|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.io.InputStream | +--java.io.FilterInputStream | +--java.util.zip.InflaterInputStream
This class implements a stream filter for uncompressing data in the "deflate" compression format. It is also used as the basis for other decompression filters, such as GZIPInputStream.
Inflater
Field Summary | |
protected byte[] |
buf
Input buffer for decompression. |
protected Inflater |
inf
Decompressor for this stream. |
protected int |
len
Length of input buffer. |
Fields inherited from class java.io.FilterInputStream |
in |
Constructor Summary | |
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. |
Method Summary | |
int |
available()
Returns 0 after EOF has reached, otherwise always return 1. |
void |
close()
Closes the input stream. |
protected void |
fill()
Fills input buffer with more data to decompress. |
int |
read()
Reads a byte of uncompressed data. |
int |
read(byte[] b,
int off,
int len)
Reads uncompressed data into an array of bytes. |
long |
skip(long n)
Skips specified number of bytes of uncompressed data. |
Methods inherited from class java.io.FilterInputStream |
mark, markSupported, read, reset |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected Inflater inf
protected byte[] buf
protected int len
Constructor Detail |
public InflaterInputStream(InputStream in, Inflater inf, int size)
in
- the input streaminf
- the decompressor ("inflater")size
- the input buffer size
IllegalArgumentException
- if size is <= 0public InflaterInputStream(InputStream in, Inflater inf)
in
- the input streaminf
- the decompressor ("inflater")public InflaterInputStream(InputStream in)
in
- the input streamMethod Detail |
public int read() throws IOException
read
in class FilterInputStream
IOException
- if an I/O error has occurredFilterInputStream.in
public int read(byte[] b, int off, int len) throws IOException
read
in class FilterInputStream
b
- the buffer into which the data is readoff
- the start offset of the datalen
- the maximum number of bytes read
ZipException
- if a ZIP format error has occurred
IOException
- if an I/O error has occurredFilterInputStream.in
public 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
in class FilterInputStream
IOException
- if an I/O error occurs.FilterInputStream.in
public long skip(long n) throws IOException
skip
in class FilterInputStream
n
- the number of bytes to skip
IOException
- if an I/O error has occurred
IllegalArgumentException
- if n < 0public void close() throws IOException
close
in class FilterInputStream
IOException
- if an I/O error has occurredFilterInputStream.in
protected void fill() throws IOException
IOException
- if an I/O error has occurred
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.