Class SevenZFile
- All Implemented Interfaces:
Closeable
,AutoCloseable
The 7z file format is a flexible container that can contain many compression and encryption types, but at the moment only only Copy, LZMA, LZMA2, BZIP2, Deflate and AES-256 + SHA-256 are supported.
The format is very Windows/Intel specific, so it uses little-endian byte order, doesn't store user/group or permission bits, and represents times using NTFS timestamps (100 nanosecond units since 1 January 1601). Hence the official tools recommend against using it for backup purposes on *nix, and recommend .tar.7z or .tar.lzma or .tar.xz instead.
Both the header and file contents may be compressed and/or encrypted. With both encrypted, neither file names nor file contents can be read, but the use of encryption isn't plausibly deniable.
Multi volume archives can be read by concatenating the parts in correct order - either manually or by using {link org.apache.commons.compress.utils.MultiReadOnlySeekableByteChannel} for example.
- Since:
- 1.6
- This class is not thread-safe
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionSevenZFile
(File fileName) Deprecated.SevenZFile
(File file, byte[] password) Deprecated.SevenZFile
(File file, char[] password) Deprecated.SevenZFile
(File file, char[] password, SevenZFileOptions options) Deprecated.SevenZFile
(File file, SevenZFileOptions options) Deprecated.SevenZFile
(SeekableByteChannel channel) Deprecated.SevenZFile
(SeekableByteChannel channel, byte[] password) Deprecated.SevenZFile
(SeekableByteChannel channel, char[] password) Deprecated.SevenZFile
(SeekableByteChannel channel, char[] password, SevenZFileOptions options) Deprecated.SevenZFile
(SeekableByteChannel channel, String fileName) Deprecated.SevenZFile
(SeekableByteChannel channel, String fileName, byte[] password) Deprecated.SevenZFile
(SeekableByteChannel channel, String fileName, char[] password) Deprecated.SevenZFile
(SeekableByteChannel channel, String fileName, char[] password, SevenZFileOptions options) Deprecated.SevenZFile
(SeekableByteChannel channel, String fileName, SevenZFileOptions options) Deprecated.SevenZFile
(SeekableByteChannel channel, SevenZFileOptions options) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic SevenZFile.Builder
builder()
Creates a new Builder.void
close()
Closes the archive.Gets a default file name from the archive name - if known.Gets a copy of meta-data of all archive entries.getInputStream
(SevenZArchiveEntry entry) Gets an InputStream for reading the contents of the given entry.Gets the next Archive Entry in this archive.Gets statistics for bytes read from the current entry.static boolean
matches
(byte[] signature, int length) Checks if the signature matches what is expected for a 7z file.int
read()
Reads a byte of data.int
read
(byte[] b) Reads data into an array of bytes.int
read
(byte[] b, int off, int len) Reads data into an array of bytes.toString()
-
Constructor Details
-
SevenZFile
Deprecated.Reads a file as unencrypted 7z archive.- Parameters:
fileName
- the file to read.- Throws:
IOException
- if reading the archive fails.
-
SevenZFile
Deprecated.Reads a file as 7z archive- Parameters:
file
- the file to readpassword
- optional password if the archive is encrypted - the byte array is supposed to be the UTF16-LE encoded representation of the password.- Throws:
IOException
- if reading the archive fails
-
SevenZFile
Deprecated.Reads a file as 7z archive- Parameters:
file
- the file to readpassword
- optional password if the archive is encrypted- Throws:
IOException
- if reading the archive fails- Since:
- 1.17
-
SevenZFile
@Deprecated public SevenZFile(File file, char[] password, SevenZFileOptions options) throws IOException Deprecated.Reads a file as 7z archive with additional options.- Parameters:
file
- the file to readpassword
- optional password if the archive is encryptedoptions
- the options to apply- Throws:
IOException
- if reading the archive fails or the memory limit (if set) is too small- Since:
- 1.19
-
SevenZFile
Deprecated.Reads a file as unencrypted 7z archive- Parameters:
file
- the file to readoptions
- the options to apply- Throws:
IOException
- if reading the archive fails or the memory limit (if set) is too small- Since:
- 1.19
-
SevenZFile
Deprecated.Reads a SeekableByteChannel as 7z archiveSeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to read- Throws:
IOException
- if reading the archive fails- Since:
- 1.13
-
SevenZFile
Deprecated.Reads a SeekableByteChannel as 7z archiveSeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readpassword
- optional password if the archive is encrypted - the byte array is supposed to be the UTF16-LE encoded representation of the password.- Throws:
IOException
- if reading the archive fails- Since:
- 1.13
-
SevenZFile
Deprecated.Reads a SeekableByteChannel as 7z archiveSeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readpassword
- optional password if the archive is encrypted- Throws:
IOException
- if reading the archive fails- Since:
- 1.17
-
SevenZFile
@Deprecated public SevenZFile(SeekableByteChannel channel, char[] password, SevenZFileOptions options) throws IOException Deprecated.Reads a SeekableByteChannel as 7z archive with additional options.SeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readpassword
- optional password if the archive is encryptedoptions
- the options to apply- Throws:
IOException
- if reading the archive fails or the memory limit (if set) is too small- Since:
- 1.19
-
SevenZFile
@Deprecated public SevenZFile(SeekableByteChannel channel, SevenZFileOptions options) throws IOException Deprecated.Reads a SeekableByteChannel as 7z archive with additional options.SeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readoptions
- the options to apply- Throws:
IOException
- if reading the archive fails or the memory limit (if set) is too small- Since:
- 1.19
-
SevenZFile
Deprecated.Reads a SeekableByteChannel as 7z archiveSeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readfileName
- name of the archive - only used for error reporting- Throws:
IOException
- if reading the archive fails- Since:
- 1.17
-
SevenZFile
@Deprecated public SevenZFile(SeekableByteChannel channel, String fileName, byte[] password) throws IOException Deprecated.Reads a SeekableByteChannel as 7z archiveSeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readfileName
- name of the archive - only used for error reportingpassword
- optional password if the archive is encrypted - the byte array is supposed to be the UTF16-LE encoded representation of the password.- Throws:
IOException
- if reading the archive fails- Since:
- 1.13
-
SevenZFile
@Deprecated public SevenZFile(SeekableByteChannel channel, String fileName, char[] password) throws IOException Deprecated.Reads a SeekableByteChannel as 7z archiveSeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readfileName
- name of the archive - only used for error reportingpassword
- optional password if the archive is encrypted- Throws:
IOException
- if reading the archive fails- Since:
- 1.17
-
SevenZFile
@Deprecated public SevenZFile(SeekableByteChannel channel, String fileName, char[] password, SevenZFileOptions options) throws IOException Deprecated.Reads a SeekableByteChannel as 7z archive with additional options.SeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readfileName
- name of the archive - only used for error reportingpassword
- optional password if the archive is encryptedoptions
- the options to apply- Throws:
IOException
- if reading the archive fails or the memory limit (if set) is too small- Since:
- 1.19
-
SevenZFile
@Deprecated public SevenZFile(SeekableByteChannel channel, String fileName, SevenZFileOptions options) throws IOException Deprecated.Reads a SeekableByteChannel as 7z archive with additional options.SeekableInMemoryByteChannel
allows you to read from an in-memory archive.- Parameters:
channel
- the channel to readfileName
- name of the archive - only used for error reportingoptions
- the options to apply- Throws:
IOException
- if reading the archive fails or the memory limit (if set) is too small- Since:
- 1.19
-
-
Method Details
-
builder
Creates a new Builder.- Returns:
- a new Builder.
- Since:
- 1.26.0
-
matches
Checks if the signature matches what is expected for a 7z file.- Parameters:
signature
- the bytes to checklength
- the number of bytes to check- Returns:
- true, if this is the signature of a 7z archive.
- Since:
- 1.8
-
close
Closes the archive.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
- if closing the file fails
-
getDefaultName
Gets a default file name from the archive name - if known.This implements the same heuristics the 7z tools use. In 7z's case if an archive contains entries without a name - i.e.
SevenZArchiveEntry.getName()
returnsnull
- then its command line and GUI tools will use this default name when extracting the entries.- Returns:
- null if the name of the archive is unknown. Otherwise, if the name of the archive has got any extension, it is stripped and the remainder
returned. Finally, if the name of the archive hasn't got any extension, then a
~
character is appended to the archive name. - Since:
- 1.19
-
getEntries
Gets a copy of meta-data of all archive entries.This method only provides meta-data, the entries can not be used to read the contents, you still need to process all entries in order using
getNextEntry()
for that.The content methods are only available for entries that have already been reached via
getNextEntry()
.- Returns:
- a copy of meta-data of all archive entries.
- Since:
- 1.11
-
getInputStream
Gets an InputStream for reading the contents of the given entry.For archives using solid compression randomly accessing entries will be significantly slower than reading the archive sequentially.
- Parameters:
entry
- the entry to get the stream for.- Returns:
- a stream to read the entry from.
- Throws:
IOException
- if unable to create an input stream from the entry- Since:
- 1.20
-
getNextEntry
Gets the next Archive Entry in this archive.- Returns:
- the next entry, or
null
if there are no more entries - Throws:
IOException
- if the next entry could not be read
-
getStatisticsForCurrentEntry
Gets statistics for bytes read from the current entry.- Returns:
- statistics for bytes read from the current entry
- Since:
- 1.17
-
read
Reads a byte of data.- Returns:
- the byte read, or -1 if end of input is reached
- Throws:
IOException
- if an I/O error has occurred
-
read
Reads data into an array of bytes.- Parameters:
b
- the array to write data to- Returns:
- the number of bytes read, or -1 if end of input is reached
- Throws:
IOException
- if an I/O error has occurred
-
read
Reads data into an array of bytes.- Parameters:
b
- the array to write data tooff
- offset into the buffer to start filling atlen
- of bytes to read- Returns:
- the number of bytes read, or -1 if end of input is reached
- Throws:
IOException
- if an I/O error has occurred
-
toString
-
SevenZFile.Builder.get()
.