Uses of Class
org.apache.commons.compress.archivers.ArchiveInputStream
Package
Description
Provides a unified API and factories for dealing with archives in different formats.
Provides stream classes for reading and writing archives using the AR format.
Provides stream classes for reading archives using the ARJ format.
Provides stream classes for reading and writing archives using the CPIO format.
This package provides stream classes for reading archives using the UNIX DUMP format.
Contains example code that is not guaranteed to provide a stable API across releases of Commons Compress.
Provides stream classes for reading and writing archives using the ZIP format with some extensions for the special case of JAR archives.
Provides stream classes for reading and writing archives using the TAR format.
Provides stream classes for reading and writing archives using the ZIP format.
EXPERIMENTAL support for changesets that are applied to archives.
-
Uses of ArchiveInputStream in org.apache.commons.compress.archivers
Modifier and TypeMethodDescription<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory.createArchiveInputStream
(InputStream in) Creates an archive input stream from an input stream, autodetecting the archive type from the first few bytes of the stream.<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory.createArchiveInputStream
(String archiverName, InputStream in) Creates an archive input stream from an archiver name and an input stream.<I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamFactory.createArchiveInputStream
(String archiverName, InputStream in, String actualEncoding) <I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamProvider.createArchiveInputStream
(String archiverName, InputStream inputStream, String encoding) Creates an archive input stream from an archiver name and an input stream. -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.ar
Modifier and TypeClassDescriptionclass
Implements the "ar" archive format as an input stream. -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.arj
Modifier and TypeClassDescriptionclass
Implements the "arj" archive format as an InputStream. -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.cpio
Modifier and TypeClassDescriptionclass
CpioArchiveInputStream is a stream for reading cpio streams. -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.dump
Modifier and TypeClassDescriptionclass
The DumpArchiveInputStream reads a UNIX dump archive as an InputStream. -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.examples
Modifier and TypeMethodDescriptionvoid
Expander.expand
(ArchiveInputStream<?> archive, File targetDirectory) Expandsarchive
intotargetDirectory
.void
Expander.expand
(ArchiveInputStream<?> archive, Path targetDirectory) Expandsarchive
intotargetDirectory
. -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.jar
Modifier and TypeClassDescriptionclass
Implements an input stream that can read entries from jar files. -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.tar
Modifier and TypeClassDescriptionclass
The TarInputStream reads a UNIX tar archive as an InputStream. methods are provided to position at each successive entry in the archive, and the read each entry as a normal input stream using read(). -
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.zip
Modifier and TypeClassDescriptionclass
Implements an input stream that can read Zip archives. -
Uses of ArchiveInputStream in org.apache.commons.compress.changes
Modifier and TypeClassDescriptionclass
ChangeSetPerformer<I extends ArchiveInputStream<E>,
O extends ArchiveOutputStream<E>, E extends ArchiveEntry> Performs ChangeSet operations on a stream.