chenjiahe
2022-05-26 c5817f2cca92507b17be5636ccbf8b485d02c879
src/main/java/com/hz/util/http/HttpHzUtil.java
@@ -80,7 +80,12 @@
            }
            httpHzResponse.setCode(con.getResponseCode()+"");
            httpHzResponse.setData(IOUtils.toString(con.getInputStream(), CHARSET));
            if(con.getErrorStream() != null){
                httpHzResponse.setMsg(IOUtils.toString(con.getErrorStream(), CHARSET));
            }
            if(HttpURLConnection.HTTP_OK == con.getResponseCode() || HttpURLConnection.HTTP_CREATED == con.getResponseCode()){
                httpHzResponse.setData(IOUtils.toString(con.getInputStream(), CHARSET));
            }
        } catch (Exception var14) {
            var14.printStackTrace();