vote up 0 vote down star

Are they any classes or libraries to read a gzipped stream from a server? For example, Java has the GZIPInputStream and GZIPOutputStream classes to read from a gzipped stream. Does iPhone SDK have such libraries or are there any external libraries that we can use?

flag

1 Answer

vote up 3 vote down check

Is this a web server, and can you tell it that the content encoding is gzip? If so, apparently NSURLRequest accepts gzip encoding transparently. In other words, you can make a request which looks like it's going to get the uncompressed data, the server can deliver gzip compressed data, and when you read it you'll get it decompressed already. You just need to be able to tell the server what's going on, really.

link|flag
So basically the server needs to set the Content-Encoding to gzip when sending out a gzipped stream right? – Ram Sep 10 at 6:27
Yup, I believe so - but without re-compressing the data :) – Jon Skeet Sep 10 at 7:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.