Package | Description |
---|---|
org.apache.commons.compress.archivers.sevenz |
Provides classes for reading and writing archives using
the 7z format.
|
Modifier and Type | Field and Description |
---|---|
static SevenZFileOptions |
SevenZFileOptions.DEFAULT
The default options.
|
private SevenZFileOptions |
SevenZFile.options |
Modifier and Type | Method and Description |
---|---|
SevenZFileOptions |
SevenZFileOptions.Builder.build()
Create the
SevenZFileOptions . |
Constructor and Description |
---|
SevenZFile(java.io.File fileName,
char[] password,
SevenZFileOptions options)
Reads a file as 7z archive with additional options.
|
SevenZFile(java.io.File fileName,
SevenZFileOptions options)
Reads a file as unencrypted 7z archive
|
SevenZFile(java.nio.channels.SeekableByteChannel channel,
char[] password,
SevenZFileOptions options)
Reads a SeekableByteChannel as 7z archive with additional options.
|
SevenZFile(java.nio.channels.SeekableByteChannel channel,
SevenZFileOptions options)
Reads a SeekableByteChannel as 7z archive with addtional options.
|
SevenZFile(java.nio.channels.SeekableByteChannel channel,
java.lang.String filename,
byte[] password,
boolean closeOnError,
SevenZFileOptions options) |
SevenZFile(java.nio.channels.SeekableByteChannel channel,
java.lang.String fileName,
char[] password,
SevenZFileOptions options)
Reads a SeekableByteChannel as 7z archive with addtional options.
|
SevenZFile(java.nio.channels.SeekableByteChannel channel,
java.lang.String fileName,
SevenZFileOptions options)
Reads a SeekableByteChannel as 7z archive with additional options.
|