Uses of Class
org.apache.commons.compress.archivers.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
Modifier 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
Modifier and TypeClassDescriptionclass
Implements the "ar" archive format as an output stream. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.cpio
Modifier and TypeClassDescriptionclass
CpioArchiveOutputStream is a stream for writing CPIO streams. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.examples
Modifier 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
Modifier 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
Modifier and TypeClassDescriptionclass
The TarOutputStream writes a UNIX tar archive as an OutputStream. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.zip
Modifier 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
Modifier and TypeClassDescriptionclass
ChangeSetPerformer<I extends ArchiveInputStream<E>,
O extends ArchiveOutputStream<E>, E extends ArchiveEntry> Performs ChangeSet operations on a stream.