首页 > Web开发 > 详细

HttpClient Post Form data and get Response String

时间:2016-08-23 11:20:08      阅读:276      评论:0      收藏:0      [点我收藏+]
DefaultHttpClient httpclient = new DefaultHttpClient(); 
HttpPost httpost = new HttpPost("http://xxx/yyy/login"); 

List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("key1", "value1"));  
params.add(new BasicNameValuePair("key2", "value2"));  
		
try {
	httpost.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));
	HttpResponse response = httpclient.execute(httpost);
	int status = response.getStatusLine().getStatusCode();
	String body = EntityUtils.toString(response.getEntity()); 
} catch (Exception e) {
	e.printStackTrace();
}  

 

HttpClient Post Form data and get Response String

原文:http://www.cnblogs.com/webglcn/p/5798429.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!