Thursday, January 13, 2011

Executing a HTTP POST Request with HttpClient

 DOWNLOAD SOURCE CODE

Executing A HTTP POST Request with HttpClient.

 public void postData() { 
        // Create a new HttpClient and Post Header 
        HttpClient httpclient = new DefaultHttpClient(); 
        HttpPost httppost = new HttpPost("http://192.168.2.175:8080/script.php"); 
     
        try { 
            // Add your data 
            List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2); 
            nameValuePairs.add(new BasicNameValuePair("id", "2")); 
           nameValuePairs.add(new BasicNameValuePair("stringdata", "Vijayakumar!")); 
           httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs)); 
   
           // Execute HTTP Post Request 
           HttpResponse response = httpclient.execute(httppost); 
            
       } catch (ClientProtocolException e) { 
           // TODO Auto-generated catch block 
       } catch (IOException e) { 
           // TODO Auto-generated catch block 
       } 
   }

3 comments:

  1. This comment has been removed by the author.

    ReplyDelete
  2. I am actually grateful to the holder of this site who has shared
    this enormous article at here. 메이저사이트

    ReplyDelete
  3. Everyone loves it when folks come together and share opinions.
    Great site, stick with it! 경마

    ReplyDelete

Check out this may be help you

Related Posts Plugin for WordPress, Blogger...