this seems to be a dead project, but for the record, it doesn\'t
work for me. I stumbled across it while searching for a solution
to the \"utf8 zip name\" problem. It does correctly parse the
offending names, but it fails to decode binaries past the location
of the offending compressed files.
To put it another way, using it as a plug-compatible replacement
for java.util.zip, on an archive containing utf8 names, it correctly
presents the file names, but If I ask to decode and retrieve a file
from the end of the archive (after a utf8-named file) it hangs up
somewhere.
Perhaps I was too hasty - I found a mixed solution
http://www.peterbuettner.de/develop/javasnippets/zipOnlyAscii/index.html
that uses jazzlib to parse the file names, but the standard ziplib to do the
bulk decoding, which seems to work for me.