- Description
- Field Summary
- Constructor Summary
- Method Summary
- Field Details
- Constructor Details
- Method Details
Class GZIPInputStream
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected CRC32CRC-32 for uncompressed data.protected booleanIndicates end of input stream.static final intGZIP header magic number.Fields declared in class FilterInputStream
in -
Constructor Summary
ConstructorsConstructorDescriptionCreates 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
All MethodsInstance MethodsConcrete MethodsMethods declared in class InflaterInputStream
available, fill, mark, markSupported, read, reset, skipModifier and TypeMethodDescriptionintReturns 0 after EOF has been reached, otherwise always return 1.protected voidfill()Fills input buffer with more data to decompress.voidmark(int readlimit)Marks the current position in this input stream.booleanTests if this input stream supports the mark and reset methods.intread()Reads a byte of uncompressed data.voidreset()Repositions this stream to the position at the time the mark method was last called on this input stream.longskip(long n)Skips specified number of bytes of uncompressed data.Methods declared in class FilterInputStream
readModifier and TypeMethodDescriptionintread(byte[] b)Reads up to b.length bytes of data from this input stream into an array of bytes.Methods declared in class InputStream
nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferToModifier and TypeMethodDescriptionstatic InputStreamReturns a new InputStream that reads no bytes.byte[]Reads all remaining bytes from the input stream.intreadNBytes(byte[] b, int off, int len)Reads the requested number of bytes from the input stream into the given byte array.byte[]readNBytes(int len)Reads up to a specified number of bytes from the input stream.voidskipNBytes(long n)Skips over and discards exactly n bytes of data from this input stream.longtransferTo(OutputStream out)Reads all bytes from this input stream and writes the bytes to the given output stream in the order that they are read.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?>getClass()Returns the runtime class of this Object.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis)Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos)Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
crc
CRC-32 for uncompressed data. -
eos
protected boolean eosIndicates end of input stream. -
GZIP_MAGIC
public static final int GZIP_MAGICGZIP header magic number.See Also:
-
-
Constructor Details
-
GZIPInputStream
Creates a new input stream with the specified buffer size.Parameters: in - the input stream size - the input buffer size Throws: ZipException - if a GZIP format error has occurred or the compression method used is unsupported NullPointerException - if in is null IOException - if an I/O error has occurred IllegalArgumentException - if size <= 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 unsupported NullPointerException - if in is null IOException - if an I/O error has occurred
-
-
Method Details
-
read
Reads uncompressed data into an array of bytes, returning the number of inflated bytes. If len is not zero, the method will block until some input can be decompressed; otherwise, no bytes are read and 0 is returned.Overrides: read in class InflaterInputStream Parameters: buf - the buffer into which the data is read off - the start offset in the destination array buf len - the maximum number of bytes read Returns: the actual number of bytes inflated, or -1 if the end of the compressed input stream is reached Throws: NullPointerException - If buf is null. IndexOutOfBoundsException - If off is negative, len is negative, or len is greater than buf.length - off ZipException - if the compressed input data is corrupt. IOException - if an I/O error has occurred. See Also:If this method returns a nonzero integer n then buf[off] through buf[off+n-1] contain the uncompressed data. The content of elements buf[off+n] through buf[off+len-1] is undefined, contrary to the specification of the InputStream superclass, so an implementation is free to modify these elements during the inflate operation. If this method returns -1 or throws an exception then the content of buf[off] through buf[off+len -1] is undefined.
-
close
Closes this input stream and releases any system resources associated with the stream.Specified by: close in interface AutoCloseable Specified by: close in interface Closeable Overrides: close in class InflaterInputStream Throws: IOException - if an I/O error has occurred See Also:
-
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. Other versions.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2026, 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.