1
zj
2025-08-18 67db7b820ee5bc318d2e7d5510b5ede981e57f3f
src/main/java/com/nq/utils/http/HttpRequest.java
@@ -76,8 +76,8 @@
        HttpURLConnection httpURLConnection = (HttpURLConnection) connection;
        httpURLConnection.setRequestProperty("Accept-Charset", "utf-8");
        httpURLConnection.setConnectTimeout(12000); // 设置连接超时时间
        httpURLConnection.setReadTimeout(12000); // 设置读取超时时间
        httpURLConnection.setConnectTimeout(32000); // 设置连接超时时间
        httpURLConnection.setReadTimeout(32000); // 设置读取超时时间
        StringBuffer resultBuffer = new StringBuffer();
        if (httpURLConnection.getResponseCode() >= 300) {