I've a HTTP communication to a webserver requesting JSON data. I'd like compress this data stream with Content-Encoding: gzip. Is there a way I can set Accept-Encoding: gzip in my HttpClient? The search for gzip in the Android References doesn't show up anything related to HTTP, as you can see here.
|
2
|
|
||
|
|
|
|
You should use http headers to indicate a connection can accept gzip encoded data, e.g:
Check response for content encoding:
|
||
|
|
|
I haven't used GZip, but I would assume that you should use the input stream from your |
||
|
|
