私はそれを理解しました。そのアイデアは、未だ解凍されていないレスポンスを取るカスタムインターセプターを追加し、それを '手動で解凍する'ことです.OutputHttpがContent-Encodingヘッダーに基づいて自動的に行いますが、ヘッダーは必要ありません。
DISのようなものです:
OkHttpClient.Builder clientBuilder = new OkHttpClient.Builder()
.addInterceptor(new UnzippingInterceptor());
OkHttpClient client = clientBuilder.build();
インターセプタはDISのようなものです:
private class UnzippingInterceptor implements Interceptor {
@Override
public Response intercept(Chain chain) throws IOException {
Response response = chain.proceed(chain.request());
return unzip(response);
}
}
して解凍機能がDISのようなものです:
// copied from okhttp3.internal.http.HttpEngine (because is private)
private Response unzip(final Response response) throws IOException {
if (response.body() == null) {
return response;
}
GzipSource responseBody = new GzipSource(response.body().source());
Headers strippedHeaders = response.headers().newBuilder()
.removeAll("Content-Encoding")
.removeAll("Content-Length")
.build();
return response.newBuilder()
.headers(strippedHeaders)
.body(new RealResponseBody(strippedHeaders, Okio.buffer(responseBody)))
.build();
}
興味深い。インターセプタを使用します。良いアイデア。それはうまくいくはずです。 – itsymbal
@itsymbalです –