Uses of Class
kala.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 kala.compress.archivers
Methods in kala.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, Charset actualEncoding) <O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamProvider.createArchiveOutputStream(String archiverName, OutputStream outputStream, Charset encoding) Creates an archive output stream from an archiver name and an output stream.Methods in kala.compress.archivers that return ArchiveOutputStreamModifier and TypeMethodDescriptionArchiveStreamFactory.BuiltinArchiver.createArchiveOutputStream(OutputStream out, Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.ar
Subclasses of ArchiveOutputStream in kala.compress.archivers.arModifier and TypeClassDescriptionclassImplements the "ar" archive format as an output stream.Methods in kala.compress.archivers.ar that return ArchiveOutputStreamModifier and TypeMethodDescriptionArArchiver.createArchiveOutputStream(OutputStream out, Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.cpio
Subclasses of ArchiveOutputStream in kala.compress.archivers.cpioModifier and TypeClassDescriptionclassCpioArchiveOutputStream is a stream for writing CPIO streams.Methods in kala.compress.archivers.cpio that return ArchiveOutputStreamModifier and TypeMethodDescriptionCpioArchiver.createArchiveOutputStream(OutputStream out, Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.examples
Classes in kala.compress.archivers.examples with type parameters of type ArchiveOutputStreamModifier and TypeClassDescriptionprivate static classArchiver.ArchiverFileVisitor<O extends ArchiveOutputStream<E>,E extends ArchiveEntry> Fields in kala.compress.archivers.examples declared as ArchiveOutputStreamMethods in kala.compress.archivers.examples with parameters of type ArchiveOutputStreamModifier and TypeMethodDescriptionvoidArchiver.create(ArchiveOutputStream<?> target, File directory) Creates an archivetargetby recursively including all files and directories indirectory.voidArchiver.create(ArchiveOutputStream<?> target, Path directory) Creates an archivetargetby recursively including all files and directories indirectory.voidArchiver.create(ArchiveOutputStream<?> target, Path directory, EnumSet<FileVisitOption> fileVisitOptions, LinkOption... linkOptions) Creates an archivetargetby recursively including all files and directories indirectory. -
Uses of ArchiveOutputStream in kala.compress.archivers.jar
Subclasses of ArchiveOutputStream in kala.compress.archivers.jarModifier and TypeClassDescriptionclassSubclass 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.Methods in kala.compress.archivers.jar that return ArchiveOutputStreamModifier and TypeMethodDescriptionJarArchiver.createArchiveOutputStream(OutputStream out, Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.tar
Subclasses of ArchiveOutputStream in kala.compress.archivers.tarModifier and TypeClassDescriptionclassThe TarOutputStream writes a UNIX tar archive as an OutputStream.Methods in kala.compress.archivers.tar that return ArchiveOutputStreamModifier and TypeMethodDescriptionTarArchiver.createArchiveOutputStream(OutputStream out, Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.zip
Subclasses of ArchiveOutputStream in kala.compress.archivers.zipModifier and TypeClassDescriptionclassReimplementation ofjava.util.zip.ZipOutputStreamto 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.Methods in kala.compress.archivers.zip that return ArchiveOutputStreamModifier and TypeMethodDescriptionZipArchiver.createArchiveOutputStream(OutputStream out, Charset charset) -
Uses of ArchiveOutputStream in kala.compress.changes
Classes in kala.compress.changes with type parameters of type ArchiveOutputStreamModifier and TypeClassDescriptionclassChangeSetPerformer<I extends ArchiveInputStream<E>,O extends ArchiveOutputStream<E>, E extends ArchiveEntry> Performs ChangeSet operations on a stream.