JAVA的HttpClient问题:The Server Failed to Respond With a Valid HTTP Response
Caused by: org.apache.http.ProtocolException: The server failed to respond with a valid HTTP response
昨天帐前卒使用java 的HttpClient时遇到这个错误。这个错误大致是说server给的不是正确的http response.这个错误是可能是由于:使用同一个HttpClient长连接/保持连接, 然后又使用这个httpClient进行其他网络请求。
如果使用的是HttpGet进行的请求(其他请求类似解决)。那么解决方法是:
// 帐前卒的code
HttpGet get = new HttpGet(urlWithParam);
HttpResponse response;
try {
response = httpclient.execute(get);
// read response entity
// do something!!!
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
} finally {
get.abort();
if (response != null) {
EntityUtils.consumeQuietly(response.getEntity());
}
}
在abort()之前要把所有的内容都获取到。然后强制关闭这个连接。同时把entity也干掉。这里解决问题的关键是get.abort()。如果entity不关掉,那么引发的问题是:httpclient卡死。 详情猛击这里
当然还有一种解决方法:不断new出httpclient. 这种方法不推荐(消耗大量资源)。