码迷,mamicode.com
首页 > Web开发 > 详细

apache httpclient4 设置超时时间

时间:2015-05-06 11:21:55      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

apache httpclient4 设置超时时间

旧的方法(已被禁用)

CloseableHttpClient httpclient = HttpClients.createDefault();
httpclient.getParams().setParameter(CoreConnectionPNames.CONNECTION_TIMEOUT,5000);
httpclient.getParams().setParameter(CoreConnectionPNames.SO_TIMEOUT,5000);

新的方法

HttpPost httppost = new HttpPost(httpUrl);
//设置超时时间为5秒
RequestConfig requestConfig = RequestConfig.custom().setConnectionRequestTimeout(5000).setConnectTimeout(5000).setSocketTimeout(5000).build();
httppost.setConfig(requestConfig);


apache httpclient4 设置超时时间

标签:

原文地址:http://my.oschina.net/u/914897/blog/411130

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!