From 4e0b09cbd4808024ba0b1d2d56b6f411be3c9097 Mon Sep 17 00:00:00 2001
From: ChenJiaHe <763432473@qq.com>
Date: 星期四, 21 一月 2021 11:16:12 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/huoxiong/hx_common

---
 .idea/inspectionProfiles/Project_Default.xml |    2 +-
 src/main/java/com/hx/util/HttpUtil.java      |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+), 1 deletions(-)

diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
index 4c64f60..f3983d9 100644
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -3,7 +3,7 @@
     <option name="myName" value="Project Default" />
     <inspection_tool class="DuplicatedCode" enabled="true" level="WEAK WARNING" enabled_by_default="true">
       <Languages>
-        <language minSize="109" name="Java" />
+        <language minSize="146" name="Java" />
       </Languages>
     </inspection_tool>
   </profile>
diff --git a/src/main/java/com/hx/util/HttpUtil.java b/src/main/java/com/hx/util/HttpUtil.java
index f64532c..3222ba1 100644
--- a/src/main/java/com/hx/util/HttpUtil.java
+++ b/src/main/java/com/hx/util/HttpUtil.java
@@ -3,6 +3,7 @@
 import net.sf.json.JSONException;
 import net.sf.json.JSONObject;
 import org.apache.commons.io.IOUtils;
+import org.bouncycastle.util.encoders.UTF8;
 import org.springframework.web.multipart.MultipartFile;
 
 import javax.activation.MimetypesFileTypeMap;
@@ -11,6 +12,8 @@
 import java.io.*;
 import java.net.HttpURLConnection;
 import java.net.URL;
+import java.nio.charset.Charset;
+import java.nio.charset.CharsetEncoder;
 import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
@@ -109,6 +112,56 @@
         return result;
     }
 
+    /**
+     * 甯eader鐨刾ost璇锋眰
+     * @param generalUrl
+     * @param header
+     * @param params
+     * @return
+     * @throws Exception
+     */
+    public static String post(String generalUrl, Map<String, String> header, String params)
+            throws Exception {
+        URL url = new URL(generalUrl);
+        // 鎵撳紑鍜孶RL涔嬮棿鐨勮繛鎺�
+        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
+        connection.setRequestMethod("POST");
+        // 璁剧疆閫氱敤鐨勮姹傚睘鎬�
+        connection.setRequestProperty("Connection", "Keep-Alive");
+        if(header != null)
+        {
+            for(String key : header.keySet())
+            {
+                connection.setRequestProperty(key, header.get(key));
+            }
+        }
+
+        connection.setUseCaches(false);
+        connection.setDoOutput(true);
+        connection.setDoInput(true);
+
+        // 寰楀埌璇锋眰鐨勮緭鍑烘祦瀵硅薄
+        DataOutputStream out = new DataOutputStream(connection.getOutputStream());
+        out.write(params.getBytes("UTF-8"));
+        out.flush();
+        out.close();
+
+        // 寤虹珛瀹為檯鐨勮繛鎺�
+        connection.connect();
+        // 瀹氫箟 BufferedReader杈撳叆娴佹潵璇诲彇URL鐨勫搷搴�
+        BufferedReader in = null;
+        in = new BufferedReader(
+                new InputStreamReader(connection.getInputStream(), "UTF-8"));
+        String result = "";
+        String getLine;
+        while ((getLine = in.readLine()) != null) {
+            result += getLine;
+        }
+        in.close();
+
+        return result;
+    }
+
     /** 璇锋眰http鍗忚 鑾峰彇淇℃伅宸ュ叿 **/
     public static JSONObject HttpURLUtil(String url, String data) {
         HttpURLConnection con = null;

--
Gitblit v1.8.0