Example usage for org.apache.commons.compress.archivers ArchiveStreamFactory interface-usage

List of usage examples for org.apache.commons.compress.archivers ArchiveStreamFactory interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.compress.archivers ArchiveStreamFactory interface-usage.

Usage

From source file org.apache.ant.compress.util.FileAwareArchiveStreamFactory.java

/**
 * Creates streams for the supported archive formats that may take
 * advantage of writing to/reading from a file.
 *
 * @since Apache Compress Antlib 1.1
 */

From source file org.apache.ant.compress.util.ArStreamFactory.java

public class ArStreamFactory implements ArchiveStreamFactory {

    /**
     * @param stream the stream to read from, should be buffered
     * @param encoding the encoding of the entry names, ignored
     */

From source file org.apache.ant.compress.util.TarStreamFactory.java

public class TarStreamFactory implements ArchiveStreamFactory {

    /**
     * @param stream the stream to read from, should be buffered
     * @param encoding the encoding of the entry names
     */

From source file org.apache.ant.compress.util.CpioStreamFactory.java

public class CpioStreamFactory implements ArchiveStreamFactory {

    /**
     * @param stream the stream to read from, should be buffered
     * @param encoding the encoding of the entry names
     */

From source file org.apache.ant.compress.util.ArjStreamFactory.java

/**
 * @since Apache Compress Antlib 1.3
 */
public class ArjStreamFactory implements ArchiveStreamFactory {

    /**

From source file org.apache.ant.compress.util.DumpStreamFactory.java

/**
 * @since Apache Compress Antlib 1.1
 */
public class DumpStreamFactory implements ArchiveStreamFactory {

    /**