public class LZMACompressorInputStream extends CompressorInputStream implements InputStreamStatistics
Constructor and Description |
---|
LZMACompressorInputStream(java.io.InputStream inputStream)
Creates a new input stream that decompresses LZMA-compressed data
from the specified input stream.
|
LZMACompressorInputStream(java.io.InputStream inputStream,
int memoryLimitInKb)
Creates a new input stream that decompresses LZMA-compressed data
from the specified input stream.
|
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
long |
getCompressedCount() |
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) |
getBytesRead, getCount, getUncompressedCount
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getUncompressedCount
public LZMACompressorInputStream(java.io.InputStream inputStream) throws java.io.IOException
inputStream
- where to read the compressed datajava.io.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 underlying
inputStream
throws an exceptionpublic LZMACompressorInputStream(java.io.InputStream inputStream, int memoryLimitInKb) throws java.io.IOException
inputStream
- where to read the compressed datamemoryLimitInKb
- calculated memory use threshold. Throws MemoryLimitException
if calculate memory use is above this thresholdjava.io.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 underlying
inputStream
throws an exceptionpublic int read() throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public int read(byte[] buf, int off, int len) throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public long skip(long n) throws java.io.IOException
skip
in class java.io.InputStream
java.io.IOException
public int available() throws java.io.IOException
available
in class java.io.InputStream
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.InputStream
java.io.IOException
public long getCompressedCount()
getCompressedCount
in interface InputStreamStatistics
public static boolean matches(byte[] signature, int length)
signature
- the bytes to checklength
- the number of bytes to checkCopyright © 2010 - 2020 Adobe. All Rights Reserved