Uses of Class
org.apache.commons.compress.archivers.ArchiveInputStream
Packages that use 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.archiversMethods in org.apache.commons.compress.archivers with type parameters of type ArchiveInputStreamModifier 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.arSubclasses of ArchiveInputStream in org.apache.commons.compress.archivers.arModifier and TypeClassDescriptionclassImplements the "ar" archive format as an input stream.
- 
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.arjSubclasses of ArchiveInputStream in org.apache.commons.compress.archivers.arjModifier and TypeClassDescriptionclassImplements the "arj" archive format as an InputStream.
- 
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.cpioSubclasses of ArchiveInputStream in org.apache.commons.compress.archivers.cpioModifier and TypeClassDescriptionclassCpioArchiveInputStream is a stream for reading cpio streams.
- 
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.dumpSubclasses of ArchiveInputStream in org.apache.commons.compress.archivers.dumpModifier and TypeClassDescriptionclassThe DumpArchiveInputStream reads a Unix dump archive as an InputStream.
- 
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.examplesMethods in org.apache.commons.compress.archivers.examples with parameters of type ArchiveInputStreamModifier and TypeMethodDescriptionvoidExpander.expand(ArchiveInputStream<?> archive, File targetDirectory) ExpandsarchiveintotargetDirectory.voidExpander.expand(ArchiveInputStream<?> archive, Path targetDirectory) ExpandsarchiveintotargetDirectory.
- 
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.jarSubclasses of ArchiveInputStream in org.apache.commons.compress.archivers.jarModifier and TypeClassDescriptionclassImplements an input stream that can read entries from jar files.
- 
Uses of ArchiveInputStream in org.apache.commons.compress.archivers.tarSubclasses of ArchiveInputStream in org.apache.commons.compress.archivers.tarModifier and TypeClassDescriptionclassThe 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.zipSubclasses of ArchiveInputStream in org.apache.commons.compress.archivers.zipModifier and TypeClassDescriptionclassImplements an input stream that can read Zip archives.
- 
Uses of ArchiveInputStream in org.apache.commons.compress.changesClasses in org.apache.commons.compress.changes with type parameters of type ArchiveInputStreamModifier and TypeClassDescriptionclassChangeSetPerformer<I extends ArchiveInputStream<E>,O extends ArchiveOutputStream<E>, E extends ArchiveEntry> Performs ChangeSet operations on a stream.