http中关于请求超时等得操作

发布于 2021-11-27 09:35:03 字数 361 浏览 736 评论 1

@wyouflf 你好,想跟你请教个问题:

http中,我想设置诸如旧版的:

HttpUtils client = new HttpUtils();
client.configSoTimeout(TIMEOUT_SOCKET);
client.configTimeout(TIMEOUT_CONNECTION);
client.configCurrentHttpCacheExpiry(5000);
这些内容,这个在xutils3中该怎么设置啊?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疑心病 2021-11-29 23:57:52
public static String httpPost(String url, Map<String, String> params) throws Exception{
        CloseableHttpClient httpclient = HttpClients.createDefault();

        HttpPost httpPost = new HttpPost(url);
        RequestConfig requestConfig = RequestConfig.custom().
                setSocketTimeout(10000).
                setConnectTimeout(10000).
                setConnectionRequestTimeout(10000).build();
        httpPost.setConfig(requestConfig);
        StringBuilder sb = new StringBuilder();
        List<NameValuePair> nvps = new ArrayList<NameValuePair>();
        if (params != null) {
            for (String key : params.keySet()) {
                nvps.add(new BasicNameValuePair(key, params.get(key)));
            }
        }

        CloseableHttpResponse response = null;
        httpPost.setEntity(new UrlEncodedFormEntity(nvps));
        response = httpclient.execute(httpPost);
        if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
            HttpEntity entity = response.getEntity();
            if (entity != null) {
                InputStream instream = entity.getContent();
                try {
                    BufferedReader reader = new BufferedReader(new InputStreamReader(instream));
                    String c = null;
                    while ((c = reader.readLine()) != null) {
                        sb.append(c);
                    }
                    reader.close();
                    logger.debug("返回内容如下:{}", sb.toString());
                } finally {
                    instream.close();
                }
            }
        } else {
            logger.warn("通信发生错误:{}", response.getStatusLine().getStatusCode());
            throw new SocketTimeoutException("错误代码:" + response.getStatusLine().getStatusCode());
        }
        return sb.toString();
    }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文