Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Member Avatar for shiv0013

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 …

Member Avatar for peter_budo
0
174
Member Avatar for shiv0013

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....

Member Avatar for mKorbel
0
525
Member Avatar for shiv0013

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 …

0
66
Member Avatar for shiv0013

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 …

Member Avatar for shiv0013
0
59
Member Avatar for shiv0013

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 …

Member Avatar for fenerista
1
89
Member Avatar for shiv0013

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 …

Member Avatar for jwenting
0
138
Member Avatar for shiv0013

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.

Member Avatar for peter_budo
0
45
Member Avatar for shiv0013

can we overwrite a javascript function in address bar? if so give me an example plz....

Member Avatar for almostbob
0
52
Member Avatar for shiv0013

[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 …

Member Avatar for PersonalIT
0
1K
Member Avatar for shiv0013

what data structure is best for a star algorithm? at a time i may have 100 items in open list........

Member Avatar for Salem
0
46
Member Avatar for shiv0013

[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

Member Avatar for helioworld
0
45
Member Avatar for shiv0013

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 …

Member Avatar for c_blimey
0
89
Member Avatar for shiv0013

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

Member Avatar for javaAddict
0
50
Member Avatar for shiv0013

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...

Member Avatar for parry_kulk
0
103
Member Avatar for shiv0013

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 …

Member Avatar for shiv0013
0
87
Member Avatar for shiv0013

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?

Member Avatar for shiv0013
0
136
Member Avatar for shiv0013

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.

0
54
Member Avatar for shiv0013

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?

0
38
Member Avatar for shiv0013

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 …

Member Avatar for vb5prgrmr
0
114
Member Avatar for shiv0013

how to find the number of fields and their names in ms access using vb6? i am using dao database.

Member Avatar for vb5prgrmr
0
42
Member Avatar for shiv0013

what will be the initial value of the fields created in a new table(dao)? how to change it?

Member Avatar for vb5prgrmr
0
115