zoukankan      html  css  js  c++  java
  • httpclient 发送 json数据,微信security.msgSecCheck,

    在微信中,发送httpclient请求

    使用了apache的组件

    /**
         * post请求
         * @param url
         * @param json
         * @return
         */
        public static JSONObject doPost(String url,JSONObject json){
            
            CloseableHttpClient httpclient = HttpClientBuilder.create().build();
            HttpPost post = new HttpPost(url);
            JSONObject response = null;
            try {
                StringEntity s = new StringEntity(json.toString(),"UTF-8");
                s.setContentEncoding("UTF-8");
                s.setContentType("application/json");//发送json数据需要设置contentType
                post.setEntity(s);
                System.out.println(post);
                HttpResponse res = httpclient.execute(post);
                if(res.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
                    String result = EntityUtils.toString(res.getEntity());// 返回json格式:
                    response = JSONObject.fromObject(result);
                }
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
            return response;
        }
        

    需要引入pom

    <dependency>
      <groupId>net.sf.json-lib</groupId>
      <artifactId>json-lib</artifactId>
      <version>2.4</version>
      <!-- 必须加jdk的版本号 -->
      <classifier>jdk15</classifier>
    </dependency>

    <dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.6</version>
    </dependency>

     

    然后创建一个jsonobject传入

    Map<String, String> contentmap = new HashMap<String, String>();
    
    contentmap.put("content", "xidada");
    
    JSONObject json = JSONObject.fromObject(contentmap);
    
    System.out.println("json is = "+json);
    String msg = doPost(url, json).toString();
  • 相关阅读:
    cordova插件(一)-inappbrowser
    quartz框架(一)-入门使用
    gitbook联动github
    系统服务部署入门
    websocket深入研究
    日志组件-logback入门
    nginx专题-nginx入门
    springmvc使用websocket入门
    基于cordova的混合app开发
    C语言------指针
  • 原文地址:https://www.cnblogs.com/sdgtxuyong/p/13763592.html
Copyright © 2011-2022 走看看