GZIPInputStream (Java SE 13 & JDK 13 )
- All Implemented Interfaces:
Closeable,AutoCloseable
public class GZIPInputStream extends InflaterInputStream
This class implements a stream filter for reading compressed data in the GZIP file format.
- Since:
- 1.1
- See Also:
InflaterInputStream
-
Field Summary
Fields Modifier and Type Field Description protected CRC32crcCRC-32 for uncompressed data.
protected booleaneosIndicates end of input stream.
static intGZIP_MAGICGZIP header magic number.
-
Constructor Summary
Constructors Constructor Description GZIPInputStream(InputStream in)Creates a new input stream with a default buffer size.
GZIPInputStream(InputStream in, int size)Creates a new input stream with the specified buffer size.
-
Method Summary
-
Field Details
-
crc
CRC-32 for uncompressed data.
-
eos
protected boolean eos
Indicates end of input stream.
-
GZIP_MAGIC
public static final int GZIP_MAGIC
GZIP header magic number.
- See Also:
- Constant Field Values
-
-
Constructor Details
-
GZIPInputStream
Creates a new input stream with the specified buffer size.
- Parameters:
in- the input streamsize- the input buffer size- Throws:
ZipException- if a GZIP format error has occurred or the compression method used is unsupportedIOException- if an I/O error has occurredIllegalArgumentException- ifsize <= 0
-
GZIPInputStream
Creates a new input stream with a default buffer size.
- Parameters:
in- the input stream- Throws:
ZipException- if a GZIP format error has occurred or the compression method used is unsupportedIOException- if an I/O error has occurred
-
-
Method Details
-
read
public int read(byte[] buf, int off, int len) throws IOException
Reads uncompressed data into an array of bytes. If
lenis not zero, the method will block until some input can be decompressed; otherwise, no bytes are read and0is returned.- Overrides:
readin classInflaterInputStream- Parameters:
buf- the buffer into which the data is readoff- the start offset in the destination arrayblen- the maximum number of bytes read- Returns:
- the actual number of bytes read, or -1 if the end of the compressed input stream is reached
- Throws:
NullPointerException- Ifbufisnull.IndexOutOfBoundsException- Ifoffis negative,lenis negative, orlenis greater thanbuf.length - offZipException- if the compressed input data is corrupt.IOException- if an I/O error has occurred.- See Also:
FilterInputStream.in
-
close
Closes this input stream and releases any system resources associated with the stream.
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInflaterInputStream- Throws:
IOException- if an I/O error has occurred- See Also:
FilterInputStream.in
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2019, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.