Forum: Java Nov 1st, 2007 |
| Replies: 3 Views: 7,871 I send the data and get the response also but still there is no change in client.
I tried that link also.
Can anyone help |
Forum: Java Oct 31st, 2007 |
| Replies: 3 Views: 7,871 After i establish the connection through url i want to post the data .
After posting the data there is no change in client
Can anyone help me
import java.net.*;
import java.io.*;
import... |
Forum: Java Oct 26th, 2007 |
| Replies: 1 Views: 825 I have created URL object and through this i want to access the User and password
and submit the request through URL. |
Forum: Java Oct 25th, 2007 |
| Replies: 3 Views: 619 I want to do in java without using html through HttpsClient Class |
Forum: Java Oct 25th, 2007 |
| Replies: 3 Views: 619 I have created connection through URL.
Now i want to validate user and password in the URl page. |
Forum: Java Jul 16th, 2007 |
| Replies: 0 Views: 5,687 File file = new File("filename");
FileInputStream fis = new FileInputStream(file);
len = (int)file.length();
//prepared stmt
st.setBinaryStream(1, fis, len);
I have uploaded the... |
Forum: Java Jul 8th, 2007 |
| Replies: 3 Views: 1,739 Thanks!Ur Qns help me to find solution |
Forum: Java Jul 7th, 2007 |
| Replies: 3 Views: 1,739 I want to connect to the database mysql .
I am using Type IV driver Connector/J.
How to connect to the database.
When i load the driver class its working after that i get this error
SQL... |
Forum: JSP Mar 4th, 2007 |
| Replies: 1 Views: 4,820 How to upload the word document to msaccess database.
i have created the datatype as OLEObject in msaccess
i am using jsp.from jsp page i have to insert the word document to the database
Please... |
Forum: Java Feb 20th, 2007 |
| Replies: 3 Views: 15,824 i want to encrypt the password and store in the database.
i extract character find ascii value of that and changed that value and stored in the database.but when i use this it wont have much... |
Forum: Java Feb 19th, 2007 |
| Replies: 1 Views: 4,301 i have used this formula to generate random number.
Integer random_number = new Integer((int)(Math.floor(Math.random() * (max - min + 1)) + min));
while(numbers.size() < noofQn )
{
Integer... |