admin
2019-05-14 744c4998b33ca1e6010bbdce1bf7fd36e8c388f8
utils/src/main/java/org/yeshi/utils/HttpUtil.java
@@ -353,6 +353,7 @@
   public static String post(String url, Map<String, String> map, Map<String, String> headers) {
      HttpClient client = new HttpClient();
      client.getHostConfiguration().setProxy("192.168.1.122", 8888);
      PostMethod pm = new PostMethod(url);// 创建HttpPost对象
      NameValuePair[] ns = new NameValuePair[map.keySet().size()];
      Iterator<String> its = map.keySet().iterator();