- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
21 Posted Topics
I can find some jars like HTMLPARSER and java.net package to access the source of a URL import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; public class sample2 { public static void main(String args[]) throws Exception { String data=null; URL location = new URL("http://www.google.com"); URLConnection conn = location.openConnection(); BufferedReader in … | |
is there any way to implement auto complete in a jtable cell. i checked for selectin a part of the text in the cell like the option in jtextfield. but seems that there is no option for that in jtable. please guide me in any one of the above.... | |
I am trying to multicast video using java. i tried jmf with rtp. but i need to sign send them as packets and authenticate them before playing. is it supported in jmf with rtp? or is there any way to play a incomplete video file. thanx in advance for ur … | |
i have written a file transfer program through multicast. i will send the file size and start transferring by dividing the file into packets. i will calculate the bytes received and compare it with the file size. in this case it works fine. but if there is any packet loss … | |
i am new to minimax algorithm. while searching in google i could roughly understand the basics of minimax. i do have a doubt in using it for tic tac toe. at each stage max will choose the node with maximum value in its child. but how do we evaluate the … | |
i want to send mail through from my website. i used the below code [CODE]String host="smtp.gmail.com", user="username", pass="password"; //host = smtp_server; //"smtp.gmail.com"; user = jsp_email; //"YourEmailId@gmail.com" // email id to send the emails //pass = jsp_email_pw; //Your gmail password String SSL_FACTORY ="javax.net.ssl.SSLSocketFactory"; String to = email;// out going email id … | |
i want to create a poll/vote for my website..... the users should have registered. i want a user to vote only once. should i store their username in the database. if so how can i do it effectively? i am using db2. | |
can we overwrite a javascript function in address bar? if so give me an example plz.... | |
[CODE] package Sample; public class Sam { public static void main(String[] args) { R obj[] = new R[100]; obj[0].current=0; } } [/CODE] [CODE] public class R { int current; } [/CODE] when executing this code i am getting null pointer exception. while debugging at "obj[0].current=0 " it shows as malformed … | |
what data structure is best for a star algorithm? at a time i may have 100 items in open list........ | |
[URL="http://webshapes.org/template/windowview/id/2007122710789078086"]http://webshapes.org/template/windowview/id/2007122710789078086[/URL] how to add drop down menu for this template? else please give a good link to learn drop down menu for css templates | |
i want to generate automatic emails. i got the following code by google. i also added the mail.jar file into lib of web inf. wen i execute this code i get exceptions "Could not connect to SMTP host: smtp.gmail.com, port: 25 (javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?)" and "Unrecognized SSL … | |
how to a add a number to current date? i want to add 14 to current date and dispaly in (yyyy-MM-dd) format. thanks in advance | |
how many data(string) can we pass using GET method in ajax? i want to pass 10 strings to the servlet and add it to the database... | |
what is wrong in the below code? i am not able to write in div er [CODE]function check() { var pass,confirm; pa=document.chg_pwd.pass.value; confir=document.chg_pwd.confirm.value; if(pa!=confir) { return true; } else { return false; } } function val() { var pass=document.chg_pwd.old.value; if(pass==="" || pass==null ) { return false; } else { return … | |
how to create login page using ajax? i know whether to show valid or invalid in the same page.......... but how to redirect to same different page wen its and valid? | |
i need algorithms similar to A *. in A * we know the starting point and ending point. suggest an algorithm when starting point is not known. | |
how to design a search page for books? a book can be searched using ISBN, book_id, name,author name, publisher, category.(all the fields may not be required) how to design without any complications and yet efficient? | |
how to delete a particular record in all the tables? i am not sure wat r the tables as i wil create them at run time i am maintaining an attendance for employees. a table wil be added for every month and when i delete a employee, his record should … | |
how to find the number of fields and their names in ms access using vb6? i am using dao database. | |
what will be the initial value of the fields created in a new table(dao)? how to change it? |
The End.