Package | Description |
---|---|
org.apache.commons.compress.archivers.sevenz |
Provides classes for reading and writing archives using
the 7z format.
|
Modifier and Type | Method and Description |
---|---|
SevenZArchiveEntry |
SevenZOutputFile.createArchiveEntry(java.io.File inputFile,
java.lang.String entryName)
Create an archive entry using the inputFile and entryName provided.
|
SevenZArchiveEntry |
SevenZOutputFile.createArchiveEntry(java.nio.file.Path inputPath,
java.lang.String entryName,
java.nio.file.LinkOption... options)
Create an archive entry using the inputPath and entryName provided.
|
SevenZArchiveEntry |
SevenZFile.getNextEntry()
Returns the next Archive Entry in this archive.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<SevenZArchiveEntry> |
SevenZFile.getEntries()
Returns a copy of meta-data of all archive entries.
|
Modifier and Type | Method and Description |
---|---|
java.io.InputStream |
SevenZFile.getInputStream(SevenZArchiveEntry entry)
Returns an InputStream for reading the contents of the given entry.
|