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

lets assume this URL...

http://www.example.com/page.php?id=10            

(Here id is no GET its POST Request...)

now here i wanna send the the id = 10...to the server's page page.php because it is POST method i m not able to send this like /page.php?id=10...

how can i do this in java....

i did this :

URL aaa = new URL("http://www.example.com/page.php");
URLConnection ccc = aaa.openConnection();

now whats next...just show me how to send id = 10 on page.php using Java...aa

share|improve this question

4 Answers

Updated Answer:

Since some of the classes, in the original answer, are deprecated in the newer version of Apache HTTP Components, I'm posting this update.

By the way, you can access the full documentation for more examples here.

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.a-domain.com/foo/");

// Request parameters and other properties.
List<NameValuePair> params = new ArrayList<NameValuePair>(2);
params.add(new BasicNameValuePair("param-1", "12345"));
params.add(new BasicNameValuePair("param-2", "Hello!"));
httppost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));

//Execute and get the response.
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();

if (entity != null) {
    InputStream instream = entity.getContent();
    try {
        // do something useful
    } finally {
        instream.close();
    }
}

Original Answer:

I recommend to use Apache HttpClient. its faster and easier to implement.

PostMethod post = new PostMethod("http://jakarata.apache.org/");
        NameValuePair[] data = {
          new NameValuePair("user", "joe"),
          new NameValuePair("password", "bloggs")
        };
        post.setRequestBody(data);
        // execute method and handle any error responses.
        ...
        InputStream in = post.getResponseBodyAsStream();
        // handle response.

for more information check this url: http://hc.apache.org/

share|improve this answer
2  
After trying for a while to get my hands on PostMethod it seems its actually now called HttpPost as per stackoverflow.com/a/9242394/1338936 - just for anyone finding this answer like I did :) – Martin Lyne Oct 28 '12 at 20:43
I wish this answer was update, because its really useful. – Juan Jan 3 at 15:10
@Juan (and Martin Lyne) thank you for the comments. I just updated the answer. – mohammad shamsi Jan 3 at 17:08
Does your revised answer still use hc.apache.org ? – djangofan Jan 3 at 17:10
@djangofan yes. there is a link to apache-hc in the revised answer too. – mohammad shamsi Jan 3 at 17:18
String rawData = "id=10";
String type = "application/x-www-form-urlencoded";
String encodedData = UrlEncoder.encode( rawData ); 
URL u = new URL("http://www.example.com/page.php");
HttpURLConnection conn = (HttpURLConnection) u.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod( "POST" );
conn.setRequestProperty( "Content-Type", type );
conn.setRequestProperty( "Content-Length", String.valueOf(encodedData.length()));
OutputStream os = conn.getOutputStream();
os.write( encodedData.getBytes() );
share|improve this answer
Important to notice: using anything other then String.getBytes() does not seem to work. For example, using a PrintWriter totally fails. – Little Bobby Tables Dec 16 '11 at 8:35
2  
what is encode function? – kittyPL Mar 18 '12 at 9:01
and how to set 2 post data? Separate by colon, comma? – kittyPL Mar 18 '12 at 9:17
where is the encode function? it is not found. – connorbp Oct 31 '12 at 0:15

The first answer was great, but I had to add try/catch to avoid Java compiler errors.
Also, I had troubles to figure how to read the HttpResponse with Java libraries.

Here is the more complete code :

/*
 * Create the POST request
 */
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://example.com/");
// Request parameters and other properties.
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("user", "Bob"));
try {
    httpPost.setEntity(new UrlEncodedFormEntity(params, "UTF-8"));
} catch (UnsupportedEncodingException e) {
    // writing error to Log
    e.printStackTrace();
}
/*
 * Making HTTP Request
 */
try {
    HttpResponse response = httpClient.execute(httpPost);
    HttpEntity respEntity = response.getEntity();

    if (respEntity != null) {
        // EntityUtils to get the reponse content
        String content =  EntityUtils.toString(respEntity);
    }
} catch (ClientProtocolException e) {
    // writing exception to log
    e.printStackTrace();
} catch (IOException e) {
    // writing exception to log
    e.printStackTrace();
}
share|improve this answer

Call HttpURLConnection.setRequestMethod("POST") and HttpURLConnection.setDoOutput(true); Actually only the latter is needed as POST then becomes the default method.

share|improve this answer
it it HttpURLConnection.setRequestMethod() :) – StudiousJoseph Jul 24 '10 at 14:45
A little context/explanation would be nice. – Robert Harvey Apr 3 '12 at 15:19
What is not clear? Call HttpURLConnection.setDoOutput(true) sets request method to "POST" internally. Everything is here: developer.android.com/reference/java/net/HttpURLConnection.html – Tertium Oct 7 '12 at 10:58

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.