Uses of Class
org.apache.commons.compress.archivers.ArchiveOutputStream
-
Packages that use ArchiveOutputStream Package Description org.apache.commons.compress.archivers Provides a unified API and factories for dealing with archives in different formats.org.apache.commons.compress.archivers.ar Provides stream classes for reading and writing archives using the AR format.org.apache.commons.compress.archivers.cpio Provides stream classes for reading and writing archives using the CPIO format.org.apache.commons.compress.archivers.examples Contains example code that is not guaranteed to provide a stable API across releases of Commons Compress.org.apache.commons.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.org.apache.commons.compress.archivers.tar Provides stream classes for reading and writing archives using the TAR format.org.apache.commons.compress.archivers.zip Provides stream classes for reading and writing archives using the ZIP format.org.apache.commons.compress.changes 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 ArchiveOutputStream Modifier and Type Method Description ArchiveOutputStreamArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out)Creates an archive output stream from an archiver name and an output stream.ArchiveOutputStreamArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out, java.lang.String actualEncoding)ArchiveOutputStreamArchiveStreamProvider. createArchiveOutputStream(java.lang.String name, java.io.OutputStream out, java.lang.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.ar Modifier and Type Class Description classArArchiveOutputStreamImplements 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.cpio Modifier and Type Class Description classCpioArchiveOutputStreamCpioArchiveOutputStream 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 ArchiveOutputStream Modifier and Type Field Description private ArchiveOutputStreamArchiver.ArchiverFileVisitor. targetMethods in org.apache.commons.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.Constructors in org.apache.commons.compress.archivers.examples with parameters of type ArchiveOutputStream Constructor Description ArchiverFileVisitor(ArchiveOutputStream target, java.nio.file.Path directory, java.nio.file.LinkOption... linkOptions) -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.jar
Subclasses of ArchiveOutputStream in org.apache.commons.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. -
Uses of ArchiveOutputStream in org.apache.commons.compress.archivers.tar
Subclasses of ArchiveOutputStream in org.apache.commons.compress.archivers.tar Modifier and Type Class Description classTarArchiveOutputStreamThe 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.zip Modifier and Type Class Description classZipArchiveOutputStreamReimplementation ofjava.util.zip.ZipOutputStreamthat 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 ArchiveOutputStream Modifier and Type Method Description private voidChangeSetPerformer. copyStream(java.io.InputStream in, ArchiveOutputStream out, ArchiveEntry entry)Copies the ArchiveEntry to the Output streamChangeSetResultsChangeSetPerformer. perform(ArchiveInputStream in, ArchiveOutputStream out)Performs all changes collected in this ChangeSet on the input stream and streams the result to the output stream.ChangeSetResultsChangeSetPerformer. perform(ZipFile in, ArchiveOutputStream out)Performs all changes collected in this ChangeSet on the ZipFile and streams the result to the output stream.private ChangeSetResultsChangeSetPerformer. 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.
-