public class DeflateCompressorInputStream extends CompressorInputStream implements InputStreamStatistics
Constructor and Description |
---|
DeflateCompressorInputStream(java.io.InputStream inputStream)
Creates a new input stream that decompresses Deflate-compressed data
from the specified input stream.
|
DeflateCompressorInputStream(java.io.InputStream inputStream,
DeflateParameters parameters)
Creates a new input stream that decompresses Deflate-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 a zlib / deflated file
with the zlib header.
|
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 DeflateCompressorInputStream(java.io.InputStream inputStream)
inputStream
- where to read the compressed datapublic DeflateCompressorInputStream(java.io.InputStream inputStream, DeflateParameters parameters)
inputStream
- where to read the compressed dataparameters
- parameterspublic 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 check"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"