vote up 0 vote down star
2

Zlib::GzipReader can take "an IO, or -IO-lie, object." as it's input, as stated in docs.

Zlib::GzipReader.open('hoge.gz') {|gz|
    print gz.read
  }

  File.open('hoge.gz') do |f|
    gz = Zlib::GzipReader.new(f)
    print gz.read
    gz.close
  end

How should I ungzip a string?

flag

3 Answers

vote up 3 vote down check

You need Zlib::Inflate for decompression of a string and Zlib::Deflate for compression

  def inflate(string)
    zstream = Zlib::Inflate.new
    buf = zstream.inflate(string)
    zstream.finish
    zstream.close
    buf
  end
link|flag
vote up 0 vote down

Zlib by default asumes that your compressed data contains a header. If your data does NOT contain a header it will fail by raising a Zlib::DataError.

You can tell Zlib to assume the data has no header via the following workaround:

def inflate(string)
  zstream = Zlib::Inflate.new(-Zlib::MAX_WBITS)
  buf = zstream.inflate(string)
  zstream.finish
  zstream.close
  buf
end
link|flag
vote up 1 vote down

The above method didn't work for me.

I kept getting 'incorrect header check (Zlib::DataError)' error.

I tried decompressing a http response body to access xml.

The work around that I implemented was:

gz = Zlib::GzipReader.new(StringIO.new(resp.body.to_s))

xml = gz.read

link|flag

Your Answer

Get an OpenID
or

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