Can anyone show me the correct way to compress and decompress tar.gzip files in java i've been searching but the most i can find is either zip or gzip(alone).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
My favorite is plexus-archiver - see sources on GitHub. Another option is Apache commons-compress - (see mvnrepository). With plexus-utils, the code for unarchiving looks like this:
Similar *Archiver classes are there for archiving. With Maven, you can use this dependency:
|
|||||
|
|
In my experience Apache Compress is much more mature than Plexus Archiver, specifically because of issues like http://jira.codehaus.org/browse/PLXCOMP-131. I believe Apache Compress has more activity as well. |
|||
|
|
|
Note sure about tarring but to untar check Ant sources http://www.jexamples.com/vSrc/158/org.apache.tools.ant.taskdefs.Untar?prodId=ant&lineNo=176&implExtId=12032&queryText=java.io.InputStream.read&qType=clsMeth |
|||
|
|