All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.plexus.archiver.tar.SnappyTarFile Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.codehaus.plexus.archiver.tar;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import org.codehaus.plexus.archiver.snappy.SnappyUnArchiver;

/**
 * Extension of {@link org.codehaus.plexus.archiver.tar.TarFile} for snappy compressed files.
 */
public class SnappyTarFile extends TarFile
{

    /**
     * Creates a new instance with the given file.
     */
    public SnappyTarFile( File file )
    {
        super( file );
    }

    @Override
    protected InputStream getInputStream( File file )
        throws IOException
    {
        return SnappyUnArchiver.getSnappyInputStream( super.getInputStream( file ) );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy