I need to create a gzip archive with multiple files inside, how can I do this without ArchiveEntry available for java.util.zip.GZIPOutputStream cla
ArchiveEntry
java.util.zip.GZIPOutputStream
GZip compresses a stream. Typically, when people use GZip with multiple files, they also use tar to munch them together
You can find a java tar libarary here: http://www.trustice.com/java/tar/
Or you could use Zip instead of GZip