Package | Description |
---|---|
org.apache.commons.compress.archivers.tar |
Provides stream classes for reading and writing archives using
the TAR format.
|
Modifier and Type | Field and Description |
---|---|
private TarArchiveEntry |
TarArchiveInputStream.currEntry
The meta-data about the current entry
|
private static TarArchiveEntry[] |
TarArchiveEntry.EMPTY_TAR_ARCHIVE_ENTRIES |
Modifier and Type | Method and Description |
---|---|
TarArchiveEntry |
TarArchiveInputStream.getCurrentEntry()
Get the current TAR Archive Entry that this input stream is processing
|
TarArchiveEntry[] |
TarArchiveEntry.getDirectoryEntries()
If this entry represents a file, and the file is a directory, return
an array of TarEntries for this entry's children.
|
TarArchiveEntry |
TarArchiveInputStream.getNextTarEntry()
Get the next entry in this tar archive.
|
Modifier and Type | Method and Description |
---|---|
private void |
TarArchiveOutputStream.addPaxHeadersForBigNumbers(java.util.Map<java.lang.String,java.lang.String> paxHeaders,
TarArchiveEntry entry) |
boolean |
TarArchiveEntry.equals(TarArchiveEntry it)
Determine if the two entries are equal.
|
private void |
TarArchiveOutputStream.failForBigNumbers(TarArchiveEntry entry) |
private boolean |
TarArchiveOutputStream.handleLongName(TarArchiveEntry entry,
java.lang.String name,
java.util.Map<java.lang.String,java.lang.String> paxHeaders,
java.lang.String paxHeaderName,
byte linkType,
java.lang.String fieldName)
Handles long file or link names according to the longFileMode setting.
|
boolean |
TarArchiveEntry.isDescendent(TarArchiveEntry desc)
Determine if the given entry is a descendant of this entry.
|
protected void |
TarArchiveInputStream.setCurrentEntry(TarArchiveEntry e) |
private void |
TarArchiveOutputStream.transferModTime(TarArchiveEntry from,
TarArchiveEntry to) |
(package private) void |
TarArchiveOutputStream.writePaxHeaders(TarArchiveEntry entry,
java.lang.String entryName,
java.util.Map<java.lang.String,java.lang.String> headers)
Writes a PAX extended header with the given map as contents.
|