我正在为 httpclient 使用 apache httpcompnonents 库。我想在多线程应用程序中使用它,其中线程数会非常高,并且会有频繁的 http 调用。这是我用来在执行调用后读取响应的代码。
HttpEntity entity = httpResponse.getEntity();
String response = EntityUtils.toString(entity);
我只是想确认这是阅读回复的最有效方式吗?
谢谢,赫曼特
我正在为 httpclient 使用 apache httpcompnonents 库。我想在多线程应用程序中使用它,其中线程数会非常高,并且会有频繁的 http 调用。这是我用来在执行调用后读取响应的代码。
HttpEntity entity = httpResponse.getEntity();
String response = EntityUtils.toString(entity);
我只是想确认这是阅读回复的最有效方式吗?
谢谢,赫曼特
这实际上代表了处理 HTTP 响应的最低效的方式。
您很可能希望将响应的内容消化成某种领域对象。那么,以字符串的形式在内存中缓冲它有什么意义呢?
处理响应处理的推荐方法是使用自定义ResponseHandler
,该自定义可以通过直接从底层连接流式传输内容来处理内容。使用 a 的额外好处ResponseHandler
是,它完全不用处理连接释放和资源释放。
编辑:修改示例代码以使用 JSON
这是一个使用 HttpClient 4.2 和 Jackson JSON 处理器的示例。Stuff
假定为您的具有 JSON 绑定的域对象。
ResponseHandler<Stuff> rh = new ResponseHandler<Stuff>() {
@Override
public Stuff handleResponse(
final HttpResponse response) throws IOException {
StatusLine statusLine = response.getStatusLine();
HttpEntity entity = response.getEntity();
if (statusLine.getStatusCode() >= 300) {
throw new HttpResponseException(
statusLine.getStatusCode(),
statusLine.getReasonPhrase());
}
if (entity == null) {
throw new ClientProtocolException("Response contains no content");
}
JsonFactory jsonf = new JsonFactory();
InputStream instream = entity.getContent();
// try - finally is not strictly necessary here
// but is a good practice
try {
JsonParser jsonParser = jsonf.createParser(instream);
// Use the parser to deserialize the object from the content stream
return stuff;
} finally {
instream.close();
}
}
};
DefaultHttpClient client = new DefaultHttpClient();
Stuff mystuff = client.execute(new HttpGet("http://somehost/stuff"), rh);