Java java.util.zip InflaterInputStream fields, constructors, methods, implement or subclass

Example usage for Java java.util.zip InflaterInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.zip InflaterInputStream.

The text is from its open source code.

Subclass

java.util.zip.InflaterInputStream has subclasses.
Click this link to see all its subclasses.

Constructor

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

intavailable()
Returns 0 after EOF has been reached, otherwise always return 1.
voidclose()
Closes this input stream and releases any system resources associated with the stream.
intread()
Reads a byte of uncompressed data.
intread(byte b[])
Reads up to b.length bytes of data from this input stream into an array of bytes.
intread(byte[] b, int off, int len)
Reads uncompressed data into an array of bytes.