Uses of Interface
org.apache.commons.compress.archivers.ArchiveEntry
Packages that use ArchiveEntry
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 archives using
the ARJ format.
Provides stream classes for reading and writing archives using
the CPIO format.
This package provides stream classes for reading archives
using the Unix DUMP 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 classes for reading and writing archives using
the 7z format.
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.
Contains utilities used internally by the compress library.
-
Uses of ArchiveEntry in org.apache.commons.compress.archivers
Methods in org.apache.commons.compress.archivers that return ArchiveEntryModifier and TypeMethodDescriptionabstract ArchiveEntryArchiveOutputStream.createArchiveEntry(File inputFile, String entryName) Create an archive entry using the inputFile and entryName provided.ArchiveOutputStream.createArchiveEntry(Path inputPath, String entryName, LinkOption... options) Create an archive entry using the inputPath and entryName provided.abstract ArchiveEntryArchiveInputStream.getNextEntry()Returns the next Archive Entry in this Stream.Methods in org.apache.commons.compress.archivers with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanArchiveInputStream.canReadEntryData(ArchiveEntry archiveEntry) Whether this stream is able to read the given entry.booleanArchiveOutputStream.canWriteEntryData(ArchiveEntry archiveEntry) Whether this stream is able to write the given entry.abstract voidArchiveOutputStream.putArchiveEntry(ArchiveEntry entry) Writes the headers for an archive entry to the output stream. -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.ar
Classes in org.apache.commons.compress.archivers.ar that implement ArchiveEntryModifier and TypeClassDescriptionclassRepresents an archive entry in the "ar" format.Methods in org.apache.commons.compress.archivers.ar that return ArchiveEntryModifier and TypeMethodDescriptionArArchiveOutputStream.createArchiveEntry(File inputFile, String entryName) ArArchiveOutputStream.createArchiveEntry(Path inputPath, String entryName, LinkOption... options) Create an archive entry using the inputPath and entryName provided.ArArchiveInputStream.getNextEntry()Methods in org.apache.commons.compress.archivers.ar with parameters of type ArchiveEntryModifier and TypeMethodDescriptionvoidArArchiveOutputStream.putArchiveEntry(ArchiveEntry pEntry) -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.arj
Classes in org.apache.commons.compress.archivers.arj that implement ArchiveEntryMethods in org.apache.commons.compress.archivers.arj with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanArjArchiveInputStream.canReadEntryData(ArchiveEntry ae) -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.cpio
Classes in org.apache.commons.compress.archivers.cpio that implement ArchiveEntryModifier and TypeClassDescriptionclassA cpio archive consists of a sequence of files.Methods in org.apache.commons.compress.archivers.cpio that return ArchiveEntryModifier and TypeMethodDescriptionCpioArchiveOutputStream.createArchiveEntry(File inputFile, String entryName) Creates a new ArchiveEntry.CpioArchiveOutputStream.createArchiveEntry(Path inputPath, String entryName, LinkOption... options) Creates a new ArchiveEntry.CpioArchiveInputStream.getNextEntry()Methods in org.apache.commons.compress.archivers.cpio with parameters of type ArchiveEntryModifier and TypeMethodDescriptionvoidCpioArchiveOutputStream.putArchiveEntry(ArchiveEntry entry) Begins writing a new CPIO file entry and positions the stream to the start of the entry data. -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.dump
Classes in org.apache.commons.compress.archivers.dump that implement ArchiveEntryModifier and TypeClassDescriptionclassThis class represents an entry in a Dump archive. -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.examples
Methods in org.apache.commons.compress.archivers.examples that return ArchiveEntryMethods in org.apache.commons.compress.archivers.examples with parameters of type ArchiveEntryModifier and TypeMethodDescriptionvoidExpander.EntryWriter.writeEntryDataTo(ArchiveEntry entry, OutputStream out) -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.jar
Classes in org.apache.commons.compress.archivers.jar that implement ArchiveEntryMethods in org.apache.commons.compress.archivers.jar that return ArchiveEntryMethods in org.apache.commons.compress.archivers.jar with parameters of type ArchiveEntry -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.sevenz
Classes in org.apache.commons.compress.archivers.sevenz that implement ArchiveEntryMethods in org.apache.commons.compress.archivers.sevenz with parameters of type ArchiveEntryModifier and TypeMethodDescriptionvoidSevenZOutputFile.putArchiveEntry(ArchiveEntry archiveEntry) Records an archive entry to add. -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.tar
Classes in org.apache.commons.compress.archivers.tar that implement ArchiveEntryModifier and TypeClassDescriptionclassThis class represents an entry in a Tar archive.Methods in org.apache.commons.compress.archivers.tar that return ArchiveEntryModifier and TypeMethodDescriptionTarArchiveOutputStream.createArchiveEntry(File inputFile, String entryName) TarArchiveOutputStream.createArchiveEntry(Path inputPath, String entryName, LinkOption... options) TarArchiveInputStream.getNextEntry()Returns the next Archive Entry in this Stream.Methods in org.apache.commons.compress.archivers.tar with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanTarArchiveInputStream.canReadEntryData(ArchiveEntry ae) Whether this class is able to read the given entry.voidTarArchiveOutputStream.putArchiveEntry(ArchiveEntry archiveEntry) Put an entry on the output stream. -
Uses of ArchiveEntry in org.apache.commons.compress.archivers.zip
Classes in org.apache.commons.compress.archivers.zip that implement ArchiveEntryModifier and TypeClassDescriptionclassExtension that adds better handling of extra fields and provides access to the internal and external file attributes.private static classExtends ZipArchiveEntry to store the offset within the archive.Methods in org.apache.commons.compress.archivers.zip that return ArchiveEntryModifier and TypeMethodDescriptionZipArchiveOutputStream.createArchiveEntry(File inputFile, String entryName) Creates a new zip entry taking some information from the given file and using the provided name.ZipArchiveOutputStream.createArchiveEntry(Path inputPath, String entryName, LinkOption... options) Creates a new zip entry taking some information from the given file and using the provided name.ZipArchiveInputStream.getNextEntry()Methods in org.apache.commons.compress.archivers.zip with parameters of type ArchiveEntryModifier and TypeMethodDescriptionbooleanZipArchiveInputStream.canReadEntryData(ArchiveEntry ae) Whether this class is able to read the given entry.booleanZipArchiveOutputStream.canWriteEntryData(ArchiveEntry ae) Whether this stream is able to write the given entry.voidZipArchiveOutputStream.putArchiveEntry(ArchiveEntry archiveEntry) Writes the headers for an archive entry to the output stream.private voidZipArchiveOutputStream.putArchiveEntry(ArchiveEntry archiveEntry, boolean phased) Writes the headers for an archive entry to the output stream. -
Uses of ArchiveEntry in org.apache.commons.compress.changes
Fields in org.apache.commons.compress.changes declared as ArchiveEntryModifier and TypeFieldDescriptionprivate final ArchiveEntryChange.entryprivate ArchiveEntryChangeSetPerformer.ArchiveInputStreamIterator.nextMethods in org.apache.commons.compress.changes that return ArchiveEntryModifier and TypeMethodDescription(package private) ArchiveEntryChange.getEntry()ChangeSetPerformer.ArchiveEntryIterator.next()ChangeSetPerformer.ArchiveInputStreamIterator.next()ChangeSetPerformer.ZipFileIterator.next()Methods in org.apache.commons.compress.changes with parameters of type ArchiveEntryModifier and TypeMethodDescriptionvoidChangeSet.add(ArchiveEntry pEntry, InputStream pInput) Adds a new archive entry to the archive.voidChangeSet.add(ArchiveEntry pEntry, InputStream pInput, boolean replace) Adds a new archive entry to the archive.private voidChangeSetPerformer.copyStream(InputStream in, ArchiveOutputStream out, ArchiveEntry entry) Copies the ArchiveEntry to the Output streamprivate booleanChangeSetPerformer.isDeletedLater(Set<Change> workingSet, ArchiveEntry entry) Checks if an ArchiveEntry is deleted later in the ChangeSet.Constructors in org.apache.commons.compress.changes with parameters of type ArchiveEntryModifierConstructorDescription(package private)Change(ArchiveEntry archiveEntry, InputStream inputStream, boolean replace) Construct a change which adds an entry. -
Uses of ArchiveEntry in org.apache.commons.compress.utils
Methods in org.apache.commons.compress.utils with parameters of type ArchiveEntryModifier and TypeMethodDescriptionstatic StringArchiveUtils.toString(ArchiveEntry entry) Generates a string containing the name, isDirectory setting and size of an entry.