| Package | Description |
|---|---|
| org.apache.commons.compress.archivers.tar |
Provides stream classes for reading and writing archives using the TAR format.
|
| Modifier and Type | Method and Description |
|---|---|
TarArchiveEntry |
TarArchiveOutputStream.createArchiveEntry(File inputFile,
String entryName) |
TarArchiveEntry |
TarArchiveOutputStream.createArchiveEntry(Path inputPath,
String entryName,
LinkOption... options) |
TarArchiveEntry |
TarArchiveInputStream.getCurrentEntry()
Gets 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.getNextEntry()
Returns the next Archive Entry in this Stream.
|
TarArchiveEntry |
TarArchiveInputStream.getNextTarEntry()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
List<TarArchiveEntry> |
TarFile.getEntries()
Gets all TAR Archive Entries from the TarFile
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
TarArchiveEntry.equals(TarArchiveEntry it)
Determine if the two entries are equal.
|
InputStream |
TarFile.getInputStream(TarArchiveEntry entry)
Gets the input stream for the provided Tar Archive Entry.
|
boolean |
TarArchiveEntry.isDescendent(TarArchiveEntry desc)
Determine if the given entry is a descendant of this entry.
|
void |
TarArchiveOutputStream.putArchiveEntry(TarArchiveEntry archiveEntry)
Puts an entry on the output stream.
|
protected void |
TarArchiveInputStream.setCurrentEntry(TarArchiveEntry e) |
Copyright © 2002–2025. All rights reserved.