AutoCloseablepublic class Inflater extends Object implements AutoCloseable
Unless otherwise noted, passing a null argument to a constructor or method in this class will cause a NullPointerException to be thrown.
This class inflates sequences of ZLIB compressed bytes. The input byte sequence is provided in either a byte array or a ByteBuffer, via one of the setInput() methods. The output byte sequence is written to the output byte array or ByteBuffer passed to the inflate() methods.
To release the resources used by an Inflater, an application must close it by invoking its end() or close() method.
AutoCloseable to facilitate its usage with try-with-resources statement. The close() method simply calls end(). The following code fragment demonstrates a trivial compression and decompression of a string using Deflater and Inflater.
// Encode a String into bytes
String inputString = "blahblahblah\u20AC\u20AC";
byte[] input = inputString.getBytes(StandardCharsets.UTF_8);
// Compress the bytes
ByteArrayOutputStream compressedBaos = new ByteArrayOutputStream();
try (Deflater compressor = new Deflater()) {
compressor.setInput(input);
// Let the compressor know that the complete input
// has been made available
compressor.finish();
// Keep compressing the input till the compressor
// is finished compressing
while (!compressor.finished()) {
// Use some reasonable size for the temporary buffer
// based on the data being compressed
byte[] tmpBuffer = new byte[100];
int numCompressed = compressor.deflate(tmpBuffer);
// Copy over the compressed bytes from the temporary
// buffer into the final byte array
compressedBaos.write(tmpBuffer, 0, numCompressed);
}
}
// Decompress the bytes
ByteArrayOutputStream decompressedBaos = new ByteArrayOutputStream();
try (Inflater decompressor = new Inflater()) {
byte[] compressed = compressedBaos.toByteArray();
decompressor.setInput(compressed, 0, compressed.length);
while (!decompressor.finished()) {
// Use some reasonable size for the temporary buffer,
// based on the data being decompressed; in this example,
// we use a small buffer size
byte[] tmpBuffer = new byte[100];
int numDecompressed = 0;
try {
numDecompressed = decompressor.inflate(tmpBuffer);
} catch (DataFormatException dfe) {
// Handle the exception suitably, in this example
// we just rethrow it
throw new RuntimeException(dfe);
}
// Copy over the decompressed bytes from the temporary
// buffer into the final byte array
decompressedBaos.write(tmpBuffer, 0, numDecompressed);
}
}
// Decode the bytes into a String
String outputString = decompressedBaos.toString(StandardCharsets.UTF_8);
| Constructor | Description |
|---|---|
Inflater() |
Creates a new decompressor. |
Inflater |
Creates a new decompressor. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
close() |
Closes and releases the resources held by this Inflater and discards any unprocessed input. |
void |
end() |
Closes and releases the resources held by this Inflater and discards any unprocessed input. |
boolean |
finished() |
Returns true if the end of the compressed data stream has been reached. |
int |
getAdler() |
Returns the ADLER-32 value of the uncompressed data. |
long |
getBytesRead() |
Returns the total number of compressed bytes input so far. |
long |
getBytesWritten() |
Returns the total number of uncompressed bytes output so far. |
int |
getRemaining() |
Returns the total number of bytes remaining in the input buffer. |
int |
getTotalIn() |
Deprecated. |
int |
getTotalOut() |
Deprecated. Use getBytesWritten() instead |
int |
inflate |
Uncompresses bytes into specified buffer. |
int |
inflate |
Uncompresses bytes into specified buffer. |
int |
inflate |
Uncompresses bytes into specified buffer. |
boolean |
needsDictionary() |
Returns true if a preset dictionary is needed for decompression. |
boolean |
needsInput() |
Returns true if no data remains in the input buffer. |
void |
reset() |
Resets inflater so that a new set of input data can be processed. |
void |
setDictionary |
Sets the preset dictionary to the given array of bytes. |
void |
setDictionary |
Sets the preset dictionary to the given array of bytes. |
void |
setDictionary |
Sets the preset dictionary to the bytes in the given buffer. |
void |
setInput |
Sets input data for decompression. |
void |
setInput |
Sets input data for decompression. |
void |
setInput |
Sets input data for decompression. |
public Inflater(boolean nowrap)
Note: When using the 'nowrap' option it is also necessary to provide an extra "dummy" byte as input. This is required by the ZLIB native library in order to support certain optimizations.
nowrap - if true then support GZIP compatible compressionpublic Inflater()
public void setInput(byte[] input, int off, int len)
One of the setInput() methods should be called whenever needsInput() returns true indicating that more input data is required.
input - the input data bytesoff - the start offset of the input datalen - the length of the input datapublic void setInput(byte[] input)
One of the setInput() methods should be called whenever needsInput() returns true indicating that more input data is required.
input - the input data bytespublic void setInput(ByteBuffer input)
One of the setInput() methods should be called whenever needsInput() returns true indicating that more input data is required.
The given buffer's position will be advanced as inflate operations are performed, up to the buffer's limit. The input buffer may be modified (refilled) between inflate operations; doing so is equivalent to creating a new buffer and setting it with this method.
Modifying the input buffer's contents, position, or limit concurrently with an inflate operation will result in undefined behavior, which may include incorrect operation results or operation failure.
input - the input data bytespublic void setDictionary(byte[] dictionary, int off, int len)
dictionary - the dictionary data bytesoff - the start offset of the datalen - the length of the dataIllegalStateException - if the Inflater is closedpublic void setDictionary(byte[] dictionary)
dictionary - the dictionary data bytesIllegalStateException - if the Inflater is closedpublic void setDictionary(ByteBuffer dictionary)
The bytes in given byte buffer will be fully consumed by this method. On return, its position will equal its limit.
dictionary - the dictionary data bytesIllegalStateException - if the Inflater is closedpublic int getRemaining()
public boolean needsInput()
setInput() methods should be called in order to provide more input.public boolean needsDictionary()
public boolean finished()
public int inflate(byte[] output, int off, int len) throws DataFormatException
If the setInput(ByteBuffer) method was called to provide a buffer for input, the input buffer's position will be advanced by the number of bytes consumed by this operation, even in the event that a DataFormatException is thrown.
The remaining byte count will be reduced by the number of consumed input bytes. If the setInput(ByteBuffer) method was called to provide a buffer for input, the input buffer's position will be advanced the number of consumed bytes.
These byte totals, as well as the total bytes read and the total bytes written values, will be updated even in the event that a DataFormatException is thrown to reflect the amount of data consumed and produced before the exception occurred.
output - the buffer for the uncompressed dataoff - the start offset of the datalen - the maximum number of uncompressed bytesDataFormatException - if the compressed data format is invalidIllegalStateException - if the Inflater is closedpublic int inflate(byte[] output) throws DataFormatException
The remaining byte count will be reduced by the number of consumed input bytes. If the setInput(ByteBuffer) method was called to provide a buffer for input, the input buffer's position will be advanced the number of consumed bytes.
These byte totals, as well as the total bytes read and the total bytes written values, will be updated even in the event that a DataFormatException is thrown to reflect the amount of data consumed and produced before the exception occurred.
output - the buffer for the uncompressed dataDataFormatException - if the compressed data format is invalidIllegalStateException - if the Inflater is closedpublic int inflate(ByteBuffer output) throws DataFormatException
On success, the position of the given output byte buffer will be advanced by as many bytes as were produced by the operation, which is equal to the number returned by this method. Note that the position of the output buffer will be advanced even in the event that a DataFormatException is thrown.
The remaining byte count will be reduced by the number of consumed input bytes. If the setInput(ByteBuffer) method was called to provide a buffer for input, the input buffer's position will be advanced the number of consumed bytes.
These byte totals, as well as the total bytes read and the total bytes written values, will be updated even in the event that a DataFormatException is thrown to reflect the amount of data consumed and produced before the exception occurred.
output - the buffer for the uncompressed dataDataFormatException - if the compressed data format is invalidReadOnlyBufferException - if the given output buffer is read-onlyIllegalStateException - if the Inflater is closedpublic int getAdler()
IllegalStateException - if the Inflater is closed@Deprecated(since="23") public int getTotalIn()
getBytesRead() instead(int) getBytesRead() and therefore cannot return the correct value when it is greater than Integer.MAX_VALUE.IllegalStateException - if the Inflater is closedpublic long getBytesRead()
IllegalStateException - if the Inflater is closed@Deprecated(since="23") public int getTotalOut()
getBytesWritten() instead(int) getBytesWritten() and therefore cannot return the correct value when it is greater than Integer.MAX_VALUE.IllegalStateException - if the Inflater is closedpublic long getBytesWritten()
IllegalStateException - if the Inflater is closedpublic void reset()
IllegalStateException - if the Inflater is closedpublic void end()
Inflater and discards any unprocessed input. If the Inflater is already closed then invoking this method has no effect.
public void close()
Inflater and discards any unprocessed input.close in interface AutoCloseable
end() method.
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/util/zip/Inflater.html
getBytesRead()instead