- java.util.zip - ZipOutputStream
- java.util.zip - ZipInputStream
- java.util.zip - ZipFile
- java.util.zip - ZipEntry
- java.util.zip - InflaterOutputStream
- java.util.zip - InflaterInputStream
- java.util.zip - Inflater
- java.util.zip - GZIPOutputStream
- java.util.zip - GZIPInputStream
- java.util.zip - DeflaterOutputStream
- java.util.zip - DeflaterInputStream
- java.util.zip - Deflater
- java.util.zip - CRC32
- java.util.zip - CheckedOutputStream
- java.util.zip - CheckedInputStream
- java.util.zip - Adler32
- java.util.zip - Home
java.util.zip Package Extras
- java.util.zip - Discussion
- java.util.zip - Useful Resources
- java.util.zip - Quick Guide
- java.util.zip - Error
- java.util.zip - Exceptions
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
java.util.zip - InflaterInputStream Class
Introduction
The java.util.zip.InflaterInputStream 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.
Class declaration
Following is the declaration for java.util.zip.InflaterInputStream class −
pubpc class InflaterInputStream extends FilterInputStream
Fields
Following are the fields for java.util.zip.InflaterInputStream class −
protected byte[] buf − Input buffer for decompression.
protected Inflater inf − Decompressor for this stream.
protected int len − Length of input buffer.
Constructors
Sr.No. | Constructor & Description |
---|---|
1 | InflaterInputStream(InputStream in) Creates a new input stream with a default decompressor and buffer size. |
2 | InflaterInputStream(InputStream in, Inflater inf) Creates a new input stream with the specified decompressor and a default buffer size. |
3 | InflaterInputStream(InputStream in, Inflater inf, int size) Creates a new input stream with the specified decompressor and buffer size. |
Class methods
Sr.No. | Method & Description |
---|---|
1 | Returns 0 after EOF has been reached, otherwise always return 1. |
2 | Closes this input stream and releases any system resources associated with the stream. |
3 | Marks the current position in this input stream. |
4 | Tests if this input stream supports the mark and reset methods. |
5 | Reads a byte of uncompressed data. |
6 | Reads uncompressed data into an array of bytes. |
7 | Repositions this stream to the position at the time the mark method was last called on this input stream. |
8 | Skips specified number of bytes of uncompressed data. |
Methods inherited
This class inherits methods from the following classes −
java.io.FilterInputStream
java.lang.Object