Class LZMACompressorInputStream
java.lang.Object
java.io.InputStream
org.apache.commons.compress.compressors.CompressorInputStream
org.apache.commons.compress.compressors.lzma.LZMACompressorInputStream
- All Implemented Interfaces:
Closeable
,AutoCloseable
,InputStreamStatistics
public class LZMACompressorInputStream
extends CompressorInputStream
implements InputStreamStatistics
LZMA decompressor.
- Since:
- 1.6
-
Constructor Summary
ConstructorDescriptionLZMACompressorInputStream
(InputStream inputStream) Creates a new input stream that decompresses LZMA-compressed data from the specified input stream.LZMACompressorInputStream
(InputStream inputStream, int memoryLimitInKb) Creates a new input stream that decompresses LZMA-compressed data from the specified input stream. -
Method Summary
Modifier and TypeMethodDescriptionint
void
close()
long
Gets the amount of raw or compressed bytes read by the stream.static boolean
matches
(byte[] signature, int length) Checks if the signature matches what is expected for an LZMA file.int
read()
int
read
(byte[] buf, int off, int len) long
skip
(long n) Methods inherited from class org.apache.commons.compress.compressors.CompressorInputStream
count, count, getBytesRead, getCount, getUncompressedCount, pushedBackBytes
Methods inherited from class java.io.InputStream
mark, markSupported, read, reset
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.commons.compress.utils.InputStreamStatistics
getUncompressedCount
-
Constructor Details
-
LZMACompressorInputStream
Creates a new input stream that decompresses LZMA-compressed data from the specified input stream.- Parameters:
inputStream
- where to read the compressed data- Throws:
IOException
- if the input is not in the .lzma format, the input is corrupt or truncated, the .lzma headers specify sizes that are not supported by this implementation, or the underlyinginputStream
throws an exception
-
LZMACompressorInputStream
Creates a new input stream that decompresses LZMA-compressed data from the specified input stream.- Parameters:
inputStream
- where to read the compressed datamemoryLimitInKb
- calculated memory use threshold. Throws MemoryLimitException if calculate memory use is above this threshold- Throws:
IOException
- if the input is not in the .lzma format, the input is corrupt or truncated, the .lzma headers specify sizes that are not supported by this implementation, or the underlyinginputStream
throws an exception- Since:
- 1.14
-
-
Method Details
-
matches
Checks if the signature matches what is expected for an LZMA file.- Parameters:
signature
- the bytes to checklength
- the number of bytes to check- Returns:
- true, if this stream is an LZMA compressed stream, false otherwise
- Since:
- 1.10
-
available
- Overrides:
available
in classInputStream
- Throws:
IOException
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
getCompressedCount
Description copied from interface:InputStreamStatistics
Gets the amount of raw or compressed bytes read by the stream.- Specified by:
getCompressedCount
in interfaceInputStreamStatistics
- Returns:
- the amount of raw or compressed bytes read by the stream.
- Since:
- 1.17
-
read
- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
- Overrides:
read
in classInputStream
- Throws:
IOException
-
skip
- Overrides:
skip
in classInputStream
- Throws:
IOException
-