public class InflaterInputStream extends FilterInputStream
Inflater| 限定符和类型 | 字段和说明 |
|---|---|
protected byte[] |
buf
Input buffer for decompression.
|
protected Inflater |
inf
Decompressor for this stream.
|
protected int |
len
Length of input buffer.
|
in| 构造器和说明 |
|---|
InflaterInputStream(InputStream in)
Creates a new input stream with a default decompressor and buffer size.
|
InflaterInputStream(InputStream in,
Inflater inf)
Creates a new input stream with the specified decompressor and a
default buffer size.
|
InflaterInputStream(InputStream in,
Inflater inf,
int size)
Creates a new input stream with the specified decompressor and
buffer size.
|
| 限定符和类型 | 方法和说明 |
|---|---|
int |
available()
Returns 0 after EOF has been reached, otherwise always return 1.
|
void |
close()
Closes this input stream and releases any system resources associated
with the stream.
|
protected void |
fill()
Fills input buffer with more data to decompress.
|
void |
mark(int readlimit)
Marks the current position in this input stream.
|
boolean |
markSupported()
Tests if this input stream supports the
mark and
reset methods. |
int |
read()
Reads a byte of uncompressed data.
|
int |
read(byte[] b,
int off,
int len)
Reads uncompressed data into an array of bytes.
|
void |
reset()
Repositions this stream to the position at the time the
mark method was last called on this input stream. |
long |
skip(long n)
Skips specified number of bytes of uncompressed data.
|
readprotected Inflater inf
protected byte[] buf
protected int len
public InflaterInputStream(InputStream in, Inflater inf, int size)
in - the input streaminf - the decompressor ("inflater")size - the input buffer sizeIllegalArgumentException - if size is <= 0public InflaterInputStream(InputStream in, Inflater inf)
in - the input streaminf - the decompressor ("inflater")public InflaterInputStream(InputStream in)
in - the input streampublic int read()
throws IOException
read 在类中 FilterInputStreamIOException - if an I/O error has occurredpublic int read(byte[] b,
int off,
int len)
throws IOException
len is not
zero, the method will block until some input can be decompressed; otherwise,
no bytes are read and 0 is returned.read 在类中 FilterInputStreamb - the buffer into which the data is readoff - the start offset in the destination array blen - the maximum number of bytes readNullPointerException - If b is null.IndexOutOfBoundsException - If off is negative,
len is negative, or len is greater than
b.length - offZipException - if a ZIP format error has occurredIOException - if an I/O error has occurredpublic int available()
throws IOException
Programs should not count on this method to return the actual number of bytes that could be read without blocking.
available 在类中 FilterInputStreamIOException - if an I/O error occurs.public long skip(long n)
throws IOException
skip 在类中 FilterInputStreamn - the number of bytes to skipIOException - if an I/O error has occurredIllegalArgumentException - if n < 0public void close()
throws IOException
close 在接口中 Closeableclose 在接口中 AutoCloseableclose 在类中 FilterInputStreamIOException - if an I/O error has occurredprotected void fill()
throws IOException
IOException - if an I/O error has occurredpublic boolean markSupported()
mark and
reset methods. The markSupported
method of InflaterInputStream returns
false.markSupported 在类中 FilterInputStreamboolean indicating if this stream type supports
the mark and reset methods.InputStream.mark(int),
InputStream.reset()public void mark(int readlimit)
The mark method of InflaterInputStream
does nothing.
mark 在类中 FilterInputStreamreadlimit - the maximum limit of bytes that can be read before
the mark position becomes invalid.InputStream.reset()public void reset()
throws IOException
mark method was last called on this input stream.
The method reset for class
InflaterInputStream does nothing except throw an
IOException.
reset 在类中 FilterInputStreamIOException - if this method is invoked.InputStream.mark(int),
IOExceptionCopyright © 2018 jretty-org. All rights reserved.