Tuesday, March 15, 2011

Post the data to Server

URl:http://www.coderanch.com/t/471150/Android/Mobile/Post-data-Server
 
DefaultHttpClient hc=new DefaultHttpClient();
ResponseHandler <String> res=new BasicResponseHandler();
HttpPost postMethod=new HttpPost("http://192.168.1.123:8080/ab/wine");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2); 
nameValuePairs.add(new BasicNameValuePair("name", "sachin")); 
nameValuePairs.add(new BasicNameValuePair("occupation", "player")); 
postMethod.setEntity(new UrlEncodedFormEntity(nameValuePairs)); 
String response=hc.execute(postMethod,res);

  

No comments:

Post a Comment