Uses of Class
org.apache.commons.compress.archivers.ArchiveOutputStream
Packages that use ArchiveOutputStream
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 and writing archives using
the CPIO 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 ArchiveOutputStream in org.apache.commons.compress.archivers
Methods in org.apache.commons.compress.archivers that return ArchiveOutputStreamModifier and TypeMethodDescriptionArchiveStreamFactory.createArchiveOutputStream
(String archiverName, OutputStream out) Creates an archive output stream from an archiver name and an output stream.ArchiveStreamFactory.createArchiveOutputStream
(String archiverName, OutputStream out, String actualEncoding) ArchiveStreamProvider.createArchiveOutputStream
(String name, OutputStream out, String encoding) Creates an archive output stream from an archiver name and an output stream. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.ar
Subclasses of ArchiveOutputStream in org.apache.commons.compress.archivers.arModifier and TypeClassDescriptionclass
Implements the "ar" archive format as an output stream. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.cpio
Subclasses of ArchiveOutputStream in org.apache.commons.compress.archivers.cpioModifier and TypeClassDescriptionclass
CpioArchiveOutputStream is a stream for writing CPIO streams. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.examples
Fields in org.apache.commons.compress.archivers.examples declared as ArchiveOutputStreamModifier and TypeFieldDescriptionprivate final ArchiveOutputStream
Archiver.ArchiverFileVisitor.target
Methods in org.apache.commons.compress.archivers.examples with parameters of type ArchiveOutputStreamModifier and TypeMethodDescriptionvoid
Archiver.create
(ArchiveOutputStream target, File directory) Creates an archivetarget
by recursively including all files and directories indirectory
.void
Archiver.create
(ArchiveOutputStream target, Path directory) Creates an archivetarget
by recursively including all files and directories indirectory
.void
Archiver.create
(ArchiveOutputStream target, Path directory, EnumSet<FileVisitOption> fileVisitOptions, LinkOption... linkOptions) Creates an archivetarget
by recursively including all files and directories indirectory
.Constructors in org.apache.commons.compress.archivers.examples with parameters of type ArchiveOutputStreamModifierConstructorDescriptionprivate
ArchiverFileVisitor
(ArchiveOutputStream target, Path directory, LinkOption... linkOptions) -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.jar
Subclasses of ArchiveOutputStream in org.apache.commons.compress.archivers.jarModifier and TypeClassDescriptionclass
Subclass that adds a special extra field to the very first entry which allows the created archive to be used as an executable jar on Solaris. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.tar
Subclasses of ArchiveOutputStream in org.apache.commons.compress.archivers.tarModifier and TypeClassDescriptionclass
The TarOutputStream writes a UNIX tar archive as an OutputStream. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.zip
Subclasses of ArchiveOutputStream in org.apache.commons.compress.archivers.zipModifier and TypeClassDescriptionclass
Reimplementation ofjava.util.zip.ZipOutputStream
that does handle the extended functionality of this package, especially internal/external file attributes and extra fields with different layouts for local file data and central directory entries. -
Uses of ArchiveOutputStream in org.apache.commons.compress.changes
Methods in org.apache.commons.compress.changes with parameters of type ArchiveOutputStreamModifier and TypeMethodDescriptionprivate void
ChangeSetPerformer.copyStream
(InputStream in, ArchiveOutputStream out, ArchiveEntry entry) Copies the ArchiveEntry to the Output streamChangeSetPerformer.perform
(ArchiveInputStream in, ArchiveOutputStream out) Performs all changes collected in this ChangeSet on the input stream and streams the result to the output stream.ChangeSetPerformer.perform
(ZipFile in, ArchiveOutputStream out) Performs all changes collected in this ChangeSet on the ZipFile and streams the result to the output stream.private ChangeSetResults
ChangeSetPerformer.perform
(ChangeSetPerformer.ArchiveEntryIterator entryIterator, ArchiveOutputStream out) Performs all changes collected in this ChangeSet on the input entries and streams the result to the output stream.