zoukankan      html  css  js  c++  java
  • httpClient发送Json请求,结果返回Json.

    1. public static JSONObject post(String url,JSONObject json){  
    2.         HttpClient client = new DefaultHttpClient();  
    3.         HttpPost post = new HttpPost(url);  
    4.         JSONObject response = null;  
    5.         try {  
    6.             StringEntity s = new StringEntity(json.toString());  
    7.             s.setContentEncoding("UTF-8");  
    8.             s.setContentType("application/json");  
    9.             post.setEntity(s);  
    10.               
    11.             HttpResponse res = client.execute(post);  
    12.             if(res.getStatusLine().getStatusCode() == HttpStatus.OK.value()){  
    13.                 HttpEntity entity = res.getEntity();  
    14.                 String charset = EntityUtils.getContentCharSet(entity);  
    15.                 response = new JSONObject(new JSONTokener(new InputStreamReader(entity.getContent(),charset)));  
    16.             }  
    17.         } catch (Exception e) {  
    18.             throw new RuntimeException(e);  
    19.         }  
    20.         return response;  
    21.     }  
    戒骄戒躁,一步一个脚印
  • 相关阅读:
    Bitnami WordPress如何让默认URL指向WordPress目录?
    单片机调试
    FreeRTOS
    FreeRTOS
    FreeRTOS
    FreeRTOS
    FreeRTOS
    FreeRTOS 问题归纳
    单片机通信的加密和解密
    IAR ------ 扩展关键字__weak
  • 原文地址:https://www.cnblogs.com/sophelia-M/p/4094318.html
Copyright © 2011-2022 走看看