任何人都可以告诉我在java中压缩和解压缩tar.gzip文件的正确方法我一直在搜索,但我能找到的最多是zip或gzip(单独)。
答案 0 :(得分:32)
我为commons-compress编写了一个名为jarchivelib的包装器,可以轻松地从File
对象中提取或压缩。
示例代码如下所示:
File archive = new File("/home/thrau/archive.tar.gz");
File destination = new File("/home/thrau/archive/");
Archiver archiver = ArchiverFactory.createArchiver("tar", "gz");
archiver.extract(archive, destination);
答案 1 :(得分:28)
我最喜欢的是plexus-archiver - 请参阅GitHub上的消息来源。
另一种选择是Apache commons-compress - (见mvnrepository)。
使用plexus-utils,unarchiving的代码如下所示:
final TarGZipUnArchiver ua = new TarGZipUnArchiver();
// Logging - as @Akom noted, logging is mandatory in newer versions, so you can use a code like this to configure it:
ConsoleLoggerManager manager = new ConsoleLoggerManager();
manager.initialize();
ua.enableLogging(manager.getLoggerForComponent("bla"));
// -- end of logging part
ua.setSourceFile(sourceFile);
destDir.mkdirs();
ua.setDestDirectory(destDir);
ua.extract();
类似*存档类存档。
使用Maven,您可以使用此dependency:
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>2.2</version>
</dependency>
答案 2 :(得分:10)
要提取.tar.gz格式的内容,我成功使用 apache commons-compress (&#39; org.apache.commons:commons-compress:1.12&#39;)。看一下这个示例方法:
public void extractTarGZ(InputStream in) {
GzipCompressorInputStream gzipIn = new GzipCompressorInputStream(in);
try (TarArchiveInputStream tarIn = new TarArchiveInputStream(gzipIn)) {
TarArchiveEntry entry;
while ((entry = (TarArchiveEntry) tarIn.getNextEntry()) != null) {
/** If the entry is a directory, create the directory. **/
if (entry.isDirectory()) {
File f = new File(entry.getName());
boolean created = f.mkdir();
if (!created) {
System.out.printf("Unable to create directory '%s', during extraction of archive contents.\n",
f.getAbsolutePath());
}
} else {
int count;
byte data[] = new byte[BUFFER_SIZE];
FileOutputStream fos = new FileOutputStream(entry.getName(), false);
try (BufferedOutputStream dest = new BufferedOutputStream(fos, BUFFER_SIZE)) {
while ((count = tarIn.read(data, 0, BUFFER_SIZE)) != -1) {
dest.write(data, 0, count);
}
}
}
}
System.out.println("Untar completed successfully!");
}
}
答案 3 :(得分:7)
根据我的经验Apache Compress比Plexus Archiver要成熟得多,特别是因为http://jira.codehaus.org/browse/PLXCOMP-131等问题。
我相信Apache Compress也有更多的活动。
答案 4 :(得分:0)
使用TrueVFS提取Tar.GZip存档是一种方法:
$('.text3').parent('.text-parent').prependTo('.text-parent');
但要注意dependencies issue。
答案 5 :(得分:-1)
它适用于我,使用GZIPInputStream
,https://www.mkyong.com/java/how-to-decompress-file-from-gzip-file/