From b82acbfda2e0d8bd5d0e90a2017e57b5f76e8786 Mon Sep 17 00:00:00 2001
From: chenjiahe <763432473@qq.com>
Date: 星期五, 15 十月 2021 11:04:55 +0800
Subject: [PATCH] 新增请求类

---
 src/main/java/com/hx/util/HttpMethodUtil.java |   11 ++---------
 1 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/src/main/java/com/hx/util/HttpMethodUtil.java b/src/main/java/com/hx/util/HttpMethodUtil.java
index abab357..638c4be 100644
--- a/src/main/java/com/hx/util/HttpMethodUtil.java
+++ b/src/main/java/com/hx/util/HttpMethodUtil.java
@@ -26,7 +26,6 @@
         HttpURLConnection con = null;
         URL u = null;
         String wxMsgXml = null;
-        JSONObject obj = null;
         try {
             StringBuilder dataP = new StringBuilder();
             if (keyValues != null && !keyValues.isEmpty()) {
@@ -63,20 +62,14 @@
                 os.write(data.getBytes("utf-8"));
             }
 
-            if (con.getResponseCode() != 200)
+            if (con.getResponseCode() != 200){
                 throw new RuntimeException("璇锋眰url澶辫触");
+            }
             // 璇诲彇杩斿洖鍐呭
             wxMsgXml = IOUtils.toString(con.getInputStream(), "utf-8");
             // //System.out.println("HttpURLUtil:"+wxMsgXml);
         } catch (Exception e) {
             e.printStackTrace();
-            obj = new JSONObject();
-            try {
-                obj.put("status", 1);
-                obj.put("errMsg", e.getMessage());
-            } catch (JSONException e1) {
-                e1.printStackTrace();
-            }
         } finally {
             if (con != null) {
                 con.disconnect();

--
Gitblit v1.8.0