誰も私にJavaでtar.gzipファイルを圧縮および解凍する正しい方法を教えてもらえますか?.
私のお気に入りはplexus-archiverです-- GitHub のソースを参照してください。
別のオプションは、Apache commons-compress---(mvnrepository を参照)です。
Plexus-utilsでは、アーカイブ解除のコードは次のようになります。
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();
同様の* Archiverクラスがアーカイブ用にあります。
Mavenでは、これを使用できます dependency :
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>2.2</version>
</dependency>
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);
.tar.gz形式のコンテンツを抽出するには、Apache commons-compress( 'org.Apache.commons:commons-compress:1.12')を使用します。このメソッド例を見てください:
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!");
}
}
私の経験では Apache Compress は Plexus Archiver よりもずっと成熟しています。具体的には http://jira.codehaus.org/browse/PLXCOMP- 131 。
Apache Compressのアクティビティも多いと思います。
Linuxで圧縮/解凍を計画している場合は、シェルコマンドラインを呼び出すことができます。
Files.createDirectories(Paths.get(target));
ProcessBuilder builder = new ProcessBuilder();
builder.command("sh", "-c", String.format("tar xfz %s -C %s", tarGzPathLocation, target));
builder.directory(new File("/tmp"));
Process process = builder.start();
int exitCode = process.waitFor();
assert exitCode == 0;