Uses of Class
kala.compress.archivers.ArchiveOutputStream
-
Packages that use ArchiveOutputStream Package Description kala.compress.archivers Provides a unified API and factories for dealing with archives in different formats.kala.compress.archivers.ar Provides stream classes for reading and writing archives using the AR format.kala.compress.archivers.cpio Provides stream classes for reading and writing archives using the CPIO format.kala.compress.archivers.examples Contains example code that is not guaranteed to provide a stable API across releases of Commons Compress.kala.compress.archivers.jar Provides stream classes for reading and writing archives using the ZIP format with some extensions for the special case of JAR archives.kala.compress.archivers.tar Provides stream classes for reading and writing archives using the TAR format.kala.compress.archivers.zip Provides stream classes for reading and writing archives using the ZIP format.kala.compress.changes 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 ArchiveOutputStream Modifier and Type Method Description <O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out)Creates an archive output stream from an archiver name and an output stream.<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out, java.nio.charset.Charset actualEncoding)<O extends ArchiveOutputStream<? extends ArchiveEntry>>
OArchiveStreamProvider. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream outputStream, java.nio.charset.Charset encoding)Creates an archive output stream from an archiver name and an output stream.Methods in kala.compress.archivers that return ArchiveOutputStream Modifier and Type Method Description ArchiveOutputStream<?>ArchiveStreamFactory.BuiltinArchiver. createArchiveOutputStream(java.io.OutputStream out, java.nio.charset.Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.ar
Subclasses of ArchiveOutputStream in kala.compress.archivers.ar Modifier and Type Class Description classArArchiveOutputStreamImplements the "ar" archive format as an output stream.Methods in kala.compress.archivers.ar that return ArchiveOutputStream Modifier and Type Method Description ArchiveOutputStream<?>ArArchiver. createArchiveOutputStream(java.io.OutputStream out, java.nio.charset.Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.cpio
Subclasses of ArchiveOutputStream in kala.compress.archivers.cpio Modifier and Type Class Description classCpioArchiveOutputStreamCpioArchiveOutputStream is a stream for writing CPIO streams.Methods in kala.compress.archivers.cpio that return ArchiveOutputStream Modifier and Type Method Description ArchiveOutputStream<?>CpioArchiver. createArchiveOutputStream(java.io.OutputStream out, java.nio.charset.Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.examples
Classes in kala.compress.archivers.examples with type parameters of type ArchiveOutputStream Modifier and Type Class Description private static classArchiver.ArchiverFileVisitor<O extends ArchiveOutputStream<E>,E extends ArchiveEntry>Fields in kala.compress.archivers.examples declared as ArchiveOutputStream Modifier and Type Field Description private OArchiver.ArchiverFileVisitor. targetMethods in kala.compress.archivers.examples with parameters of type ArchiveOutputStream Modifier and Type Method Description voidArchiver. create(ArchiveOutputStream<?> target, java.io.File directory)Creates an archivetargetby recursively including all files and directories indirectory.voidArchiver. create(ArchiveOutputStream<?> target, java.nio.file.Path directory)Creates an archivetargetby recursively including all files and directories indirectory.voidArchiver. create(ArchiveOutputStream<?> target, java.nio.file.Path directory, java.util.EnumSet<java.nio.file.FileVisitOption> fileVisitOptions, java.nio.file.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.jar Modifier and Type Class Description classJarArchiveOutputStreamSubclass 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 ArchiveOutputStream Modifier and Type Method Description ArchiveOutputStream<?>JarArchiver. createArchiveOutputStream(java.io.OutputStream out, java.nio.charset.Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.tar
Subclasses of ArchiveOutputStream in kala.compress.archivers.tar Modifier and Type Class Description classTarArchiveOutputStreamThe TarOutputStream writes a UNIX tar archive as an OutputStream.Methods in kala.compress.archivers.tar that return ArchiveOutputStream Modifier and Type Method Description ArchiveOutputStream<?>TarArchiver. createArchiveOutputStream(java.io.OutputStream out, java.nio.charset.Charset charset) -
Uses of ArchiveOutputStream in kala.compress.archivers.zip
Subclasses of ArchiveOutputStream in kala.compress.archivers.zip Modifier and Type Class Description classZipArchiveOutputStreamReimplementation 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 ArchiveOutputStream Modifier and Type Method Description ArchiveOutputStream<?>ZipArchiver. createArchiveOutputStream(java.io.OutputStream out, java.nio.charset.Charset charset) -
Uses of ArchiveOutputStream in kala.compress.changes
Classes in kala.compress.changes with type parameters of type ArchiveOutputStream Modifier and Type Class Description classChangeSetPerformer<I extends ArchiveInputStream<E>,O extends ArchiveOutputStream<E>,E extends ArchiveEntry>Performs ChangeSet operations on a stream.
-