回答:
接続がgzipエンコードされたデータを受け入れることができることを示すには、httpヘッダーを使用する必要があります。例:
HttpUriRequest request = new HttpGet(url);
request.addHeader("Accept-Encoding", "gzip");
// ...
httpClient.execute(request);
コンテンツエンコーディングの応答を確認します。
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)応答が小さすぎる場合、サーバーは応答をgzipしない可能性があることに注意してください...
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
、いくつかの特定の他のクラス、およびありません。
new WebRequest().get().to("http://www.example.com/").askForGzip(true).executeSync()
ます。具体的には、メソッドparseResponse(...)を探しているはずです。