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