web-dev-qa-db-ja.com

Javaでtarファイルを抽出するにはどうすればよいですか?

Javaでtar(またはtar.gz、またはtar.bz2)ファイルを抽出するにはどうすればよいですか?

60
skiphoppy

注:この機能は、後で別のプロジェクトであるApache Commons Compressを通じて公開されました 別の回答で説明されています この回答は時代遅れ。


私はtar APIを直接使用していませんが、tarとbzip2はAntに実装されています。それらの実装を借用するか、Antを使用して必要なことを行うことができます。

GzipはJava SE の一部です(Ant実装は同じモデルに従うと推測しています)。

GZIPInputStreamは、単にInputStreamデコレーターです。たとえば、FileInputStreamGZIPInputStreamにラップして、InputStreamを使用するのと同じように使用できます。

InputStream is = new GZIPInputStream(new FileInputStream(file));

(GZIPInputStreamには独自の内部バッファーがあるため、FileInputStreamBufferedInputStreamにラップするとパフォーマンスが低下する可能性があります。)

19
erickson

これは、Apache Commons Compressライブラリを使用して実行できます。 1.2バージョンは http://mvnrepository.com/artifact/org.Apache.commons/commons-compress/1.2 からダウンロードできます。

2つの方法があります。1つはファイルを解凍し、もう1つはファイルを解凍します。したがって、ファイル<fileName> tar.gzの場合、最初に解凍し、その後に解凍する必要があります。 tarアーカイブにはフォルダが含まれている場合があり、ローカルファイルシステムに作成する必要がある場合があることに注意してください。

楽しい。

/** Untar an input file into an output file.

 * The output file is created in the output folder, having the same name
 * as the input file, minus the '.tar' extension. 
 * 
 * @param inputFile     the input .tar file
 * @param outputDir     the output directory file. 
 * @throws IOException 
 * @throws FileNotFoundException
 *  
 * @return  The {@link List} of {@link File}s with the untared content.
 * @throws ArchiveException 
 */
private static List<File> unTar(final File inputFile, final File outputDir) throws FileNotFoundException, IOException, ArchiveException {

    LOG.info(String.format("Untaring %s to dir %s.", inputFile.getAbsolutePath(), outputDir.getAbsolutePath()));

    final List<File> untaredFiles = new LinkedList<File>();
    final InputStream is = new FileInputStream(inputFile); 
    final TarArchiveInputStream debInputStream = (TarArchiveInputStream) new ArchiveStreamFactory().createArchiveInputStream("tar", is);
    TarArchiveEntry entry = null; 
    while ((entry = (TarArchiveEntry)debInputStream.getNextEntry()) != null) {
        final File outputFile = new File(outputDir, entry.getName());
        if (entry.isDirectory()) {
            LOG.info(String.format("Attempting to write output directory %s.", outputFile.getAbsolutePath()));
            if (!outputFile.exists()) {
                LOG.info(String.format("Attempting to create output directory %s.", outputFile.getAbsolutePath()));
                if (!outputFile.mkdirs()) {
                    throw new IllegalStateException(String.format("Couldn't create directory %s.", outputFile.getAbsolutePath()));
                }
            }
        } else {
            LOG.info(String.format("Creating output file %s.", outputFile.getAbsolutePath()));
            final OutputStream outputFileStream = new FileOutputStream(outputFile); 
            IOUtils.copy(debInputStream, outputFileStream);
            outputFileStream.close();
        }
        untaredFiles.add(outputFile);
    }
    debInputStream.close(); 

    return untaredFiles;
}

/**
 * Ungzip an input file into an output file.
 * <p>
 * The output file is created in the output folder, having the same name
 * as the input file, minus the '.gz' extension. 
 * 
 * @param inputFile     the input .gz file
 * @param outputDir     the output directory file. 
 * @throws IOException 
 * @throws FileNotFoundException
 *  
 * @return  The {@File} with the ungzipped content.
 */
private static File unGzip(final File inputFile, final File outputDir) throws FileNotFoundException, IOException {

    LOG.info(String.format("Ungzipping %s to dir %s.", inputFile.getAbsolutePath(), outputDir.getAbsolutePath()));

    final File outputFile = new File(outputDir, inputFile.getName().substring(0, inputFile.getName().length() - 3));

    final GZIPInputStream in = new GZIPInputStream(new FileInputStream(inputFile));
    final FileOutputStream out = new FileOutputStream(outputFile);

    IOUtils.copy(in, out);

    in.close();
    out.close();

    return outputFile;
}
67
Dan Borza

Apache Commons VFS はtarをサポートします 仮想ファイルシステム、このようなtar:gz:http://anyhost/dir/mytar.tar.gz!/mytar.tar!/path/in/tar/README.txt

TrueZip またはその後継 TrueVFS は同じことを行います... Maven Centralからも利用できます。

12
Jörg
Archiver archiver = ArchiverFactory.createArchiver("tar", "gz");
archiver.extract(archiveFile, destDir);

依存:

 <dependency>
        <groupId>org.rauschig</groupId>
        <artifactId>jarchivelib</artifactId>
        <version>0.5.0</version>
</dependency>
10
D3iv

提案されたライブラリ(TrueZip、Apache Compress)を試しましたが、運はありませんでした。

Apache Commons VFSの例を次に示します。

FileSystemManager fsManager = VFS.getManager();
FileObject archive = fsManager.resolveFile("tgz:file://" + fileName);

// List the children of the archive file
FileObject[] children = archive.getChildren();
System.out.println("Children of " + archive.getName().getURI()+" are ");
for (int i = 0; i < children.length; i++) {
    FileObject fo = children[i];
    System.out.println(fo.getName().getBaseName());
    if (fo.isReadable() && fo.getType() == FileType.FILE
        && fo.getName().getExtension().equals("nxml")) {
        FileContent fc = fo.getContent();
        InputStream is = fc.getInputStream();
    }
}

そして、Mavenの依存関係:

    <dependency>
      <groupId>commons-vfs</groupId>
      <artifactId>commons-vfs</artifactId>
      <version>1.0</version>
    </dependency>
7
Renaud

Gzipおよびbzip2に加えて、 Apache Commons Compress API は、もともと ICE Engineering Java Tar Package APIとスタンドアロンツールの両方。

6
Jörg

この [〜#〜] api [〜#〜] をtarファイルに使用して、これ もう1つ BZIP2のAntおよびGZIPの 標準の1つ に含まれていますか?

4

Apache Commons Compress およびJava NIO(つまり、ファイルではなくパス)を使用するDan Borzaによる この以前の回答 に基づくバージョンがあります。また、1つのストリームで圧縮解除と圧縮解除を行うため、中間ファイルの作成はありません。

public static void unTarGz( Path pathInput, Path pathOutput ) throws IOException {
    TarArchiveInputStream tararchiveinputstream =
        new TarArchiveInputStream(
            new GzipCompressorInputStream(
                new BufferedInputStream( Files.newInputStream( pathInput ) ) ) );

    ArchiveEntry archiveentry = null;
    while( (archiveentry = tararchiveinputstream.getNextEntry()) != null ) {
        Path pathEntryOutput = pathOutput.resolve( archiveentry.getName() );
        if( archiveentry.isDirectory() ) {
            if( !Files.exists( pathEntryOutput ) )
                Files.createDirectory( pathEntryOutput );
        }
        else
            Files.copy( tararchiveinputstream, pathEntryOutput );
    }

    tararchiveinputstream.close();
}
0
Wade Walker