Java org.apache.commons.compress.archivers ArchiveStreamFactory fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.compress.archivers ArchiveStreamFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.compress.archivers ArchiveStreamFactory.

The text is from its open source code.

Subclass

org.apache.commons.compress.archivers.ArchiveStreamFactory has subclasses.
Click this link to see all its subclasses.

Implementation

org.apache.commons.compress.archivers.ArchiveStreamFactory has the following implementations.
Click this link to see all its implementation.

Field

StringAR
Constant used to identify the AR archive format.
StringCPIO
Constant used to identify the CPIO archive format.
StringJAR
Constant used to identify the JAR archive format.
StringTAR
Constant used to identify the TAR archive format.
StringZIP
Constant used to identify the ZIP archive format.

Constructor

Method

ArchiveInputStreamcreateArchiveInputStream(final String archiverName, final InputStream in)
Create an archive input stream from an archiver name and an input stream.
ArchiveInputStreamcreateArchiveInputStream(final InputStream in)
Create an archive input stream from an input stream, autodetecting the archive type from the first few bytes of the stream.
ArchiveOutputStreamcreateArchiveOutputStream(final String archiverName, final OutputStream out)
Create an archive output stream from an archiver name and an input stream.