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();
  • 相关阅读:
    php echo return exit 区别
    Ubuntu下添加开机启动项的2种方法
    在php中定义常量时,const与define的区别
    yii分页操作
    ubuntu14.04设置静态ip
    Yii IIS8下使用伪静态【Url Rewrite】去掉index.php
    java 第三方库
    IDEA插件
    springboot扫描通用的依赖模块
    idea注册
  • 原文地址:https://www.cnblogs.com/sdgtxuyong/p/13763592.html
Copyright © 2011-2022 走看看