码迷,mamicode.com
首页 > Web开发 > 详细

Httpclient发送json请求

时间:2017-04-22 15:41:35      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:ica   trre   cat   tostring   post   cep   trim   util   object   

一、Httpclient发送json请求

public String RequestJsonPost(String url){
    String strresponse = null;
    try{
        HttpClient hc = new DefaultHttpClient();
       HttpPost hp = new HttpPost(url);
       JSONObject jsonParam = new JSONObject();
       jsonParam.put("user","admin");
       jsonParam.put("password", "123456");
       //设置数据为utf-8编码
       StringEntity entity = new StringEntity(jsonParam.toString(),"utf-8");
       //设置请求编码
       entity.setContentEncoding("utf-8");
       //设置请求类型
       entity.setContentType("application/json");
       hp.setEntity(entity);
       //请求并得到结果
       HttpResponse result = hc.execute(hp);
       strresponse = EntityUtils.toString(result.getEntity(),"utf-8").trim();
    }catch(Exception e){
       e.printStackTrace();
}
return strresponse;
}

 

Httpclient发送json请求

标签:ica   trre   cat   tostring   post   cep   trim   util   object   

原文地址:http://www.cnblogs.com/beitha/p/6747853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!