Відповіді:
You should use http headers to indicate a connection can accept gzip encoded data, e.g:
HttpUriRequest request = new HttpGet(url);
request.addHeader("Accept-Encoding", "gzip");
// ...
httpClient.execute(request);
Check response for content encoding:
InputStream instream = response.getEntity().getContent();
Header contentEncoding = response.getFirstHeader("Content-Encoding");
if (contentEncoding != null && contentEncoding.getValue().equalsIgnoreCase("gzip")) {
instream = new GZIPInputStream(instream);
}
gzip
щоб дійсно включити стиснення gzip. (2) майте на увазі, що сервер може не отримати відповіді, якщо він занадто малий ...
Якщо ви використовуєте API рівня 8 або вище, існує AndroidHttpClient .
Він має допоміжні методи, такі як:
public static InputStream getUngzippedContent (HttpEntity entity)
і
public static void modifyRequestToAcceptGzipResponse (HttpRequest request)
що призводить до набагато більш короткого коду:
AndroidHttpClient.modifyRequestToAcceptGzipResponse( request );
HttpResponse response = client.execute( request );
InputStream inputStream = AndroidHttpClient.getUngzippedContent( response.getEntity() );
Я думаю, що зразок коду за цим посиланням є цікавішим: ClientGZipContentCompression.java
Вони використовують HttpRequestInterceptor та HttpResponseInterceptor
Зразок для запиту:
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");
}
}
});
Зразок для відповіді:
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;
}
}
}
}
});
Я не використовував GZip, але я б припустив, що ви повинні використовувати вхідний потік з вашого HttpURLConnection
або HttpResponse
як GZIPInputStream
, а не з якогось іншого класу.
У моєму випадку було так:
URLConnection conn = ...;
InputStream instream = conn.getInputStream();
String encodingHeader = conn.getHeaderField("Content-Encoding");
if (encodingHeader != null && encodingHeader.toLowerCase().contains("gzip"))
{
instream = new GZIPInputStream(instream);
}
new WebRequest().get().to("http://www.example.com/").askForGzip(true).executeSync()
. Зокрема, метод parseResponse (...) повинен бути тим, що ви шукаєте.