I'm having a hard time figuring this out. Here's what I'm trying:
ghci> :m +System.FileArchive.GZip -- From the "MissingH" package
ghci> fmap decompress $ readFile "test.html.gz"
*** Exception: test.html.gz: hGetContents: invalid argument (invalid byte sequence)
Why am I getting that exception?
I also tried Codec.Compression.GZip.decompress from the zlib package, but I'm too stupid to figure out how to get the types to work out to String instead of ByteString.
readFileis trying to decodetest.html.gzas if it were text encoded in your system encoding. Use a binary read instead. – Daniel Wagner Apr 10 '12 at 0:55