Как извлечь файл tar в Java? - PullRequest
59 голосов
/ 25 ноября 2008

Как извлечь файл tar (или tar.gz, или tar.bz2) в Java?

Ответы [ 8 ]

67 голосов
/ 26 сентября 2011

Вы можете сделать это с помощью библиотеки Apache Commons Compress. Вы можете скачать версию 1.2 с http://mvnrepository.com/artifact/org.apache.commons/commons-compress/1.2.

Вот два метода: один разархивирует файл, а другой разархивирует. Итак, для файла 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;
}
18 голосов
/ 25 ноября 2008

Примечание: Эта функциональность позже была опубликована в отдельном проекте Apache Commons Compress, как описано в другом ответе . Этот ответ устарел.


Я не использовал tar API напрямую, но tar и bzip2 реализованы в Ant; вы можете позаимствовать их реализацию или использовать Ant для выполнения ваших задач.

Gzip является частью Java SE (и я предполагаю, что реализация Ant следует той же модели).

GZIPInputStream это просто InputStream декоратор. Например, вы можете обернуть FileInputStream в GZIPInputStream и использовать его так же, как и любой другой InputStream:

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

(Обратите внимание, что GZIPInputStream имеет свой собственный внутренний буфер, поэтому перенос FileInputStream в BufferedInputStream, вероятно, снизит производительность.)

12 голосов
/ 12 ноября 2010

Apache Commons VFS поддерживает tar как виртуальную файловую систему , которая поддерживает URL-адреса, подобные этой tar:gz:<a href="http://anyhost/dir/mytar.tar.gz!/mytar.tar!/path/in/tar/README.txt" rel="nofollow noreferrer">http://anyhost/dir/mytar.tar.gz!/mytar.tar!/path/in/tar/README.txt</a>

TrueZip или его преемник TrueVFS делает то же самое ... он также доступен в Maven Central.

10 голосов
/ 18 марта 2014
Archiver archiver = ArchiverFactory.createArchiver("tar", "gz");
archiver.extract(archiveFile, destDir);

Зависимость:

 <dependency>
        <groupId>org.rauschig</groupId>
        <artifactId>jarchivelib</artifactId>
        <version>0.5.0</version>
</dependency>
7 голосов
/ 24 сентября 2011

Я только что попробовал несколько предложенных библиотек (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>
5 голосов
/ 12 ноября 2010

В дополнение к gzip и bzip2, API Apache Commons Compress также имеет поддержку tar, первоначально основанную на Пакете Java Tar для ICE Engineering , который является одновременно API и автономным инструментом.

4 голосов
/ 25 ноября 2008

Как насчет использования этого API для файлов tar, этого другого , включенного в Ant для BZIP2 и стандартного для GZIP?

0 голосов
/ 22 февраля 2019

Вот версия, основанная на этом более раннем ответе Дэна Борзы, который использует Apache Commons Compress и Java NIO (т.е. путь вместо File) Он также выполняет распаковку и распаковку в одном потоке, поэтому создание промежуточного файла отсутствует.

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();
}
...