chenjiahe
2022-07-27 386c2a4bfe398298db827607a32c1aa81cf7d554
src/main/java/com/hz/util/http/HttpHzUtil.java
@@ -79,13 +79,13 @@
                os.write(bodyData.getBytes(CHARSET));
            }
            if(HttpHzResponse.CODE_200.equals(con.getResponseCode())){
                httpHzResponse.setCode(con.getResponseCode()+"");
                httpHzResponse.setData(IOUtils.toString(con.getInputStream(), CHARSET));
            }else{
                httpHzResponse.setCode(con.getResponseCode()+"");
            httpHzResponse.setCode(con.getResponseCode()+"");
            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();