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

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

Introduction

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

The text is from its open source code.

Constructor

InflaterOutputStream(OutputStream out)
Creates a new output stream with a default decompressor and buffer size.
InflaterOutputStream(OutputStream out, Inflater infl)
Creates a new output stream with the specified decompressor and a default buffer size.

Method

voidclose()
Writes any remaining uncompressed data to the output stream and closes the underlying output stream.
voidwrite(int b)
Writes a byte to the uncompressed output stream.
voidwrite(byte[] b, int off, int len)
Writes an array of bytes to the uncompressed output stream.