


limdis wrote:I've heard of things like this before and believe it is easier than it sounds. All you would really need to do is create/edit cookies.<br><br>Here take a look at this, it's free. Is this what you are trying to do?<br>http://passpack.com/en/home/
ghost107 wrote:I think learning about Http methods will help you:<br>http://www.jmarshall.com/easy/http/


HttpURLConnection con = (HttpURLConnection) new URL("https://www.example.com").openConnection();
con.setRequestMethod("POST");
con.getOutputStream().write("LOGIN".getBytes("UTF-8"));
con.getInputStream();
MarkIntelhunter99 wrote:You should check out Applets.
this things are programs written in java and typically designed to run from a web browser.
tremor77 wrote:I find this kind of thing to be easier with PHP cURL. I do believe JAVA is able to use this method..... a little something like this:<br><br>
- Code: Select all
HttpURLConnection con = (HttpURLConnection) new URL("https://www.example.com").openConnection();<br>con.setRequestMethod("POST");<br>con.getOutputStream().write("LOGIN".getBytes("UTF-8"));<br>con.getInputStream();


Users browsing this forum: No registered users and 0 guests