Uses of Class
kala.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 kala.compress.archivers
Methods in kala.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, Charset actualEncoding) <I extends ArchiveInputStream<? extends ArchiveEntry>>
IArchiveStreamProvider.createArchiveInputStream(String archiverName, InputStream inputStream, Charset encoding) Creates an archive input stream from an archiver name and an input stream.Methods in kala.compress.archivers that return ArchiveInputStreamModifier and TypeMethodDescriptionArchiveStreamFactory.BuiltinArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.archivers.ar
Subclasses of ArchiveInputStream in kala.compress.archivers.arModifier and TypeClassDescriptionclassImplements the "ar" archive format as an input stream.Methods in kala.compress.archivers.ar that return ArchiveInputStreamModifier and TypeMethodDescriptionArArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.archivers.arj
Subclasses of ArchiveInputStream in kala.compress.archivers.arjModifier and TypeClassDescriptionclassImplements the "arj" archive format as an InputStream.Methods in kala.compress.archivers.arj that return ArchiveInputStreamModifier and TypeMethodDescriptionArjArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.archivers.cpio
Subclasses of ArchiveInputStream in kala.compress.archivers.cpioModifier and TypeClassDescriptionclassCpioArchiveInputStream is a stream for reading cpio streams.Methods in kala.compress.archivers.cpio that return ArchiveInputStreamModifier and TypeMethodDescriptionCpioArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.archivers.dump
Subclasses of ArchiveInputStream in kala.compress.archivers.dumpModifier and TypeClassDescriptionclassThe DumpArchiveInputStream reads a UNIX dump archive as an InputStream.Methods in kala.compress.archivers.dump that return ArchiveInputStreamModifier and TypeMethodDescriptionDumpArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.archivers.examples
Methods in kala.compress.archivers.examples with type parameters of type ArchiveInputStreamModifier and TypeMethodDescriptionprivate static <T extends ArchiveInputStream<? extends E>,E extends ArchiveEntry>
TLister.createArchiveInputStream(String[] args, InputStream inputStream) Methods in kala.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 kala.compress.archivers.jar
Subclasses of ArchiveInputStream in kala.compress.archivers.jarModifier and TypeClassDescriptionclassImplements an input stream that can read entries from jar files.Methods in kala.compress.archivers.jar that return ArchiveInputStreamModifier and TypeMethodDescriptionJarArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.archivers.tar
Subclasses of ArchiveInputStream in kala.compress.archivers.tarModifier and TypeClassDescriptionclassThe TarInputStream reads a UNIX tar archive as an InputStream.Methods in kala.compress.archivers.tar that return ArchiveInputStreamModifier and TypeMethodDescriptionTarArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.archivers.zip
Subclasses of ArchiveInputStream in kala.compress.archivers.zipModifier and TypeClassDescriptionclassImplements an input stream that can read Zip archives.Methods in kala.compress.archivers.zip that return ArchiveInputStreamModifier and TypeMethodDescriptionZipArchiver.createArchiveInputStream(InputStream in, Charset charset) -
Uses of ArchiveInputStream in kala.compress.changes
Classes in kala.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.Fields in kala.compress.changes declared as ArchiveInputStreamModifier and TypeFieldDescriptionprivate final ArchiveInputStream<E> ChangeSetPerformer.ArchiveInputStreamIterator.inputStreamConstructors in kala.compress.changes with parameters of type ArchiveInputStreamModifierConstructorDescription(package private)ArchiveInputStreamIterator(ArchiveInputStream<E> inputStream)