liusheng
2 天以前 27df1079c1d230fab29f565f5209f2a02e0def8a
ruoyi-common/src/main/java/com/ruoyi/common/utils/HttpUtil.java
@@ -95,7 +95,7 @@
        return httpClient;
    }
    public static String postJsonRequest(String url, String request) throws HttpRequestException {
    public static Boolean postJsonRequest(String url, String request) throws HttpRequestException {
        Assert.hasLength(url, "请求url不能为空字符串。");
        EntityEnclosingMethod httpMethod = new PostMethod(url);
@@ -122,7 +122,7 @@
            if (inputStream == null) {
                throw new HttpRequestException(RESPONSE_NULL_ERROR_CODE, "响应为null");
            }
            BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream,charset));
            BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, charset));
            StringBuffer stringBuffer = new StringBuffer();
            String str = "";
            while ((str = reader.readLine()) != null) {
@@ -132,7 +132,7 @@
            String respJson = stringBuffer.toString();
            // String respJson = httpMethod.getResponseBodyAsString();
            if (resultCode == OK) {
                return respJson;
                return true;
            } else {
                throw new HttpRequestException(resultCode, respJson);
            }
@@ -153,8 +153,6 @@
     * json的post请求
     *
     * @param url           请求url
     * @param reqEntity     请求头与请求体的封装
     * @param respBodyClass 响应体类型
     * @return 返回的响应结果
     */
    public static String postXmlRequest(String url, String request) throws HttpRequestException {