web-dev-qa-db-ja.com

javaでtar.gzファイルを圧縮/解凍する方法

誰も私にJavaでtar.gzipファイルを圧縮および解凍する正しい方法を教えてもらえますか?.

37
kdgwill

私のお気に入りは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>
28
Petr Kozelka

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);
34
thrau

.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!");
    }
}
12
RemusS

私の経験では Apache CompressPlexus Archiver よりもずっと成熟しています。具体的には http://jira.codehaus.org/browse/PLXCOMP- 131

Apache Compressのアクティビティも多いと思います。

7
Gili

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;
0
Dherik

TrueVFS を使用すると、Tar.GZipアーカイブの抽出は1行になります。

new TFile("archive.tar.gz").cp_rp(new File("dest/folder"));

ただし、 依存関係の問題 に注意してください。

0
Vadzim