HTTPPOST CLASS
This class can be easily used in java applets or applications to submit data to forms.
HttpPost.class ; HttpPost.html
Example :
HttpPost hpost= new hpost("http://www.myserver.com/cgi-bin/hello.cgi");
hpost.useProxy(true); // Use Default proxy
hpost.setUser("myuserID"); //for forms that require authentication
hpost.setPassword("xxxxxxx"); //for forms that require authentication
hpost.sendField("itemname","milk");
....
hpost.sendFile("c:\temp\temp.doc","fileElementName"); // for transferring binary files
DataInputStream res = hpost.readResponse();
.....
....
hpost.end();