Uses of Class
org.apache.commons.compress.archivers.ArchiveInputStream

Packages that use ArchiveInputStream
org.apache.commons.compress.archivers Provides a unified API and factories for dealing with archives in different formats. 
org.apache.commons.compress.archivers.ar Provides stream classes for reading and writing archives using the AR format. 
org.apache.commons.compress.archivers.cpio Provides stream classes for reading and writing archives using the CPIO format. 
org.apache.commons.compress.archivers.dump This package provides stream classes for reading archives using the Unix DUMP format. 
org.apache.commons.compress.archivers.jar Provides stream classes for reading and writing archives using the ZIP format with some extensions for the special case of JAR archives. 
org.apache.commons.compress.archivers.tar Provides stream classes for reading and writing archives using the TAR format. 
org.apache.commons.compress.archivers.zip Provides stream classes for reading and writing archives using the ZIP format. 
org.apache.commons.compress.changes EXPERIMENTAL support for changesets that are applied to archives. 
 

Uses of ArchiveInputStream in org.apache.commons.compress.archivers
 

Methods in org.apache.commons.compress.archivers that return ArchiveInputStream
 ArchiveInputStream ArchiveStreamFactory.createArchiveInputStream(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(String archiverName, InputStream in)
          Create an archive input stream from an archiver name and an input stream.
 

Uses of ArchiveInputStream in org.apache.commons.compress.archivers.ar
 

Subclasses of ArchiveInputStream in org.apache.commons.compress.archivers.ar
 class ArArchiveInputStream
          Implements the "ar" archive format as an input stream.
 

Uses of ArchiveInputStream in org.apache.commons.compress.archivers.cpio
 

Subclasses of ArchiveInputStream in org.apache.commons.compress.archivers.cpio
 class CpioArchiveInputStream
          CPIOArchiveInputStream is a stream for reading cpio streams.
 

Uses of ArchiveInputStream in org.apache.commons.compress.archivers.dump
 

Subclasses of ArchiveInputStream in org.apache.commons.compress.archivers.dump
 class DumpArchiveInputStream
          The DumpArchiveInputStream reads a UNIX dump archive as an InputStream.
 

Uses of ArchiveInputStream in org.apache.commons.compress.archivers.jar
 

Subclasses of ArchiveInputStream in org.apache.commons.compress.archivers.jar
 class JarArchiveInputStream
          Implements an input stream that can read entries from jar files.
 

Uses of ArchiveInputStream in org.apache.commons.compress.archivers.tar
 

Subclasses of ArchiveInputStream in org.apache.commons.compress.archivers.tar
 class TarArchiveInputStream
          The TarInputStream reads a UNIX tar archive as an InputStream.
 

Uses of ArchiveInputStream in org.apache.commons.compress.archivers.zip
 

Subclasses of ArchiveInputStream in org.apache.commons.compress.archivers.zip
 class ZipArchiveInputStream
          Implements an input stream that can read Zip archives.
 

Uses of ArchiveInputStream in org.apache.commons.compress.changes
 

Methods in org.apache.commons.compress.changes with parameters of type ArchiveInputStream
 ChangeSetResults ChangeSetPerformer.perform(ArchiveInputStream in, ArchiveOutputStream out)
          Performs all changes collected in this ChangeSet on the input stream and streams the result to the output stream.
 



Copyright © 2011 The Apache Software Foundation. All Rights Reserved.