Package | Description |
---|---|
org.apache.commons.compress.archivers |
Provides a unified API and factories for dealing with archives
in different formats.
|
Modifier and Type | Method and Description |
---|---|
ArchiveInputStream |
ArchiveStreamFactory.createArchiveInputStream(java.io.InputStream in)
Create an archive input stream from an input stream, autodetecting
the archive type from the first few bytes of the stream.
|
ArchiveInputStream |
ArchiveStreamFactory.createArchiveInputStream(java.lang.String archiverName,
java.io.InputStream in)
Create an archive input stream from an archiver name and an input stream.
|
ArchiveOutputStream |
ArchiveStreamFactory.createArchiveOutputStream(java.lang.String archiverName,
java.io.OutputStream out)
Create an archive output stream from an archiver name and an input stream.
|