1

Is there any Java library that does nio decompression of GZIP (and possibly other formats) out there? I'm trying to analyze compressed HTTP content and need it to be non-blocking. I found GZipInputStream but it expects InputStream which is blocking. Any ideas?

I also found Iterable gzip deflate/inflate in Java talking about compression (deflate) but couldn't find a decompression equivalent.

Thanks

Community
  • 1
  • 1
mama
  • 11
  • 2

1 Answers1

0

How about using Netty's ZLibWrapper?

Chris Mowforth
  • 6,689
  • 2
  • 26
  • 36