Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can find plenty of functions that let you decompress a GZip file, but how do I decompress a GZip string?

I'm trying to parse a HTTP response where the response body is compressed with GZip. However, the entire response is simply stored in a string so part of the string contains binary chars.

I'm attempting to use:

byte responseBodyBytes[] = responseBody.getBytes();
ByteArrayInputStream bais = new ByteArrayInputStream(responseBodyBytes); 
GZIPInputStream gzis = new GZIPInputStream(bais);

But that just throws an exception: java.io.IOException: Not in GZIP format

share|improve this question

1 Answer

up vote 8 down vote accepted

There's no such thing as a GZip string. GZip is binary, strings are text.

If you want to compress a string, you need to convert it into binary first - e.g. with OutputStreamWriter chained to a compressing OutputStream (e.g. a GZIPOutputStream)

Likewise to read the data, you can use an InputStreamReader chained to a decompressing InputStream (e.g. a GZIPInputStream).

One way of easily reading from a Reader is to use CharStreams.toString(Readable) from Guava, or a similar library.

share|improve this answer
I'm trying to parse a HTTP response where the response body is compressed with GZip. However, the entire response is simply stored in a string so part of the string contains binary chars. Are you saying that it is not possible to convert this "GZip string" into a text string? – Matt Sep 1 '10 at 21:06
@Matt: You shouldn't be storing the response in a string to start with. If it's binary, it shouldn't be in text at all, unless it's base64. The concept of "part of the string contains binary data" really doesn't work. It sounds like you need to change your approach. – Jon Skeet Sep 1 '10 at 21:16
The response is initially presented as a byte[], so that's all I have available. Could I use this? – Matt Sep 1 '10 at 21:24
@Jon Skeet I now have the same problem. Would you recommend storing the response in byte[]? – Amir Rachum Apr 25 '11 at 10:15
@Amir: I don't know what you're trying to do, so it's hard to say. I suggest you put more context into a new question. – Jon Skeet Apr 25 '11 at 10:17
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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