คำตอบ:
คุณควรใช้ส่วนหัว http เพื่อระบุว่าการเชื่อมต่อสามารถรับข้อมูลที่เข้ารหัส gzip ได้เช่น:
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
ไม่ใช่คลาสอื่นที่เฉพาะเจาะจง
ในกรณีของฉันมันเป็นเช่นนี้:
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 (... )ควรเป็นสิ่งที่คุณกำลังมองหา