I want to compose a HTTP request message in java and then want to send it to a HTTP WebServer. I also want the document content of the page recieved which I would have recieved if I had sent the same HTTP request from a webpage.
|
|
You can use java.net.HttpUrlConnection.
If Java Almanac is down, try this one. |
|||||||||||||||||||||
|
|
From Sun's java tutorial
|
|||
|
|
Apache HttpComponents. The examples for the two modules - HttpCore and HttpClient will get you started right away. Not that HttpUrlConnection is a bad choice, HttpComponents will abstract a lot of the tedious coding away. I would recommend this, if you really want to support a lot of HTTP servers/clients with minimum code. By the way, HttpCore could be used for applications (clients or servers) with minimum functionality, whereas HttpClient is to be used for clients that require support for multiple authentication schemes, cookie support etc. |
||||
|
|
I know others will recommend Apache's http-client, but it adds complexity (i.e., more things that can go wrong) that is rarely warranted. For a simple task,
|
|||||||||
|
|
This will help you. Don't forget to add the JAR
|
||||
|
|
|
There's a great link about sending a POST request here by Example Depot. If you want to send a GET request you can modify the code slightly to suit your needs. Specifically you have to add the parameters inside the constructor of the URL. Then, also comment out this One thing that's not written and you should beware of, is the timeouts. Especially if you want to use it in WebServices you have to set timeouts, otherwise the above code will wait indefinitely or for a very long time at least and it's something presumably you don't want. Timeouts are set like this |
|||
|
|
|
http://java.sun.com/javase/6/docs/api/java/net/HttpURLConnection.html In particular, getHeaderField, getHeaderFieldKey, and getContent |
|||
|
|
|
You may use Socket for this like
|
|||
|
|
protected by sarnold Feb 16 '12 at 0:58
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.