Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to do this as my assignment which is as: Write a java program to get a html page from server then fill out the form using the java program and then send it back to server.

For this I had written the following piece of code:

    class htmlPageFetch{
        public static void main(String[] args){
                try{
                        Socket s = new Socket("127.0.0.1", 80);
                        DataInputStream dIn = new DataInputStream(s.getInputStream());


        PrintWriter dOut = new PrintWriter(s.getOutputStream(), true);
                    dOut.println("GET /mytesting/justCheck.html HTTP/1.1\r\nHost:localhost\r\n\r\n");
                    boolean more_data = true;
                    String str;
                    while(more_data){


     str = dIn.readLine();
                                    if(str==null){
                                            //Now server has stopped sending data                                           //So now write again the inputs
//So i had written the following code but not working
    dOut.println("POST /mytesting/save.php HTTP/1.1\r\nHost:localhost\r\n\r\n");
    dOut.println("some=helloworld");
                                            more_data = false;
                                            continue;
                                    }
                                    System.out.println(str);
                            }
                    }catch(IOException e){

                    }
            }
    }

And here is the html file:

        <html>
    <head>
    <title>Title goes here</title>
    </head>
    <body>
    <p>Hello world</p>
    <form action="save.php" method="post">
    Enter some thing here <input name="some"/>
    <br/>
    <input type="submit" value="Send"/>
    <input type="reset" value="Cancel"/>
    </form>
    </body>
    </html>

and the save.php just echo back the string entered.

So how to send back the filled form to the server back.

Thanks in Advance.
share|improve this question

1 Answer

I would strongly recommend looking at using JSoup (http://jsoup.org/). It's basically jquery for java. You can get input fields really easily.

share|improve this answer
didn't found any thing suitable for me. because i have to code all the thing myself not to use the api. and i am not concerned with the any other information i just want to submit the form. – codeomnitrix Dec 22 '10 at 14:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.