Class Deflate64CompressorInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.commons.compress.compressors.CompressorInputStream
-
- org.apache.commons.compress.compressors.deflate64.Deflate64CompressorInputStream
-
- All Implemented Interfaces:
Closeable,AutoCloseable,InputStreamStatistics
public class Deflate64CompressorInputStream extends CompressorInputStream implements InputStreamStatistics
Deflate64 decompressor.- Since:
- 1.16
-
-
Constructor Summary
Constructors Constructor Description Deflate64CompressorInputStream(InputStream in)Constructs a Deflate64CompressorInputStream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()voidclose()longgetCompressedCount()intread()intread(byte[] b, int off, int len)-
Methods inherited from class org.apache.commons.compress.compressors.CompressorInputStream
getBytesRead, getCount, getUncompressedCount
-
Methods inherited from class java.io.InputStream
mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.commons.compress.utils.InputStreamStatistics
getUncompressedCount
-
-
-
-
Constructor Detail
-
Deflate64CompressorInputStream
public Deflate64CompressorInputStream(InputStream in)
Constructs a Deflate64CompressorInputStream.- Parameters:
in- the stream to read from
-
-
Method Detail
-
read
public int read() throws IOException- Specified by:
readin classInputStream- Throws:
EOFException- if the underlying stream is exhausted before the end of deflated data was reached.IOException
-
read
public int read(byte[] b, int off, int len) throws IOException- Overrides:
readin classInputStream- Throws:
EOFException- if the underlying stream is exhausted before the end of deflated data was reached.IOException
-
available
public int available() throws IOException- Overrides:
availablein classInputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInputStream- Throws:
IOException
-
getCompressedCount
public long getCompressedCount()
- Specified by:
getCompressedCountin interfaceInputStreamStatistics- Returns:
- the amount of raw or compressed bytes read by the stream
- Since:
- 1.17
-
-