Tôi nghĩ mẫu mã tại liên kết này thú vị hơn:
ClientGZipContentCompression.java
Họ đang sử dụng HttpRequestInterceptor và HttpResponseInterceptor
Mẫu cho yêu cầu:
httpclient.addRequestInterceptor(new HttpRequestInterceptor() {
public void process(
final HttpRequest request,
final HttpContext context) throws HttpException, IOException {
if (!request.containsHeader("Accept-Encoding")) {
request.addHeader("Accept-Encoding", "gzip");
}
}
});
Mẫu cho câu trả lời:
httpclient.addResponseInterceptor(new HttpResponseInterceptor() {
public void process(
final HttpResponse response,
final HttpContext context) throws HttpException, IOException {
HttpEntity entity = response.getEntity();
Header ceheader = entity.getContentEncoding();
if (ceheader != null) {
HeaderElement[] codecs = ceheader.getElements();
for (int i = 0; i < codecs.length; i++) {
if (codecs[i].getName().equalsIgnoreCase("gzip")) {
response.setEntity(
new GzipDecompressingEntity(response.getEntity()));
return;
}
}
}
}
});
new WebRequest().get().to("http://www.example.com/").askForGzip(true).executeSync()
. Cụ thể, phương thức parseResponse (...) sẽ là những gì bạn đang tìm kiếm.