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 with type parameters of type ArchiveOutputStreamModifier and TypeMethodDescription<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory.createArchiveOutputStream
(String archiverName, OutputStream out) Creates an archive output stream from an archiver name and an output stream.<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory.createArchiveOutputStream
(String archiverName, OutputStream out, String actualEncoding) <O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamProvider.createArchiveOutputStream
(String archiverName, OutputStream outputStream, 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
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
. -
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
to 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
Classes in org.apache.commons.compress.changes with type parameters of type ArchiveOutputStreamModifier and TypeClassDescriptionclass
ChangeSetPerformer<I extends ArchiveInputStream<E>,
O extends ArchiveOutputStream<E>, E extends ArchiveEntry> Performs ChangeSet operations on a stream.