📅  最后修改于: 2020-11-14 10:52:48             🧑  作者: Mango
java.util.zip.GZIPInputStream类实现了一个流过滤器,用于读取GZIP文件格式的压缩数据。
以下是java.util.zip.GZIPInputStream类的声明-
public class GZIPInputStream
extends InflaterInputStream
以下是java.util.zip.GZIPInputStream类的字段-
受保护的CRC32 crc -CRC-32,用于未压缩的数据。
protected boolean eos-指示输入流的末尾。
静态诠释GZIP_MAGIC -GZIP标头魔术数字。
Sr.No. | Constructor & Description |
---|---|
1 |
GZIPInputStream(InputStream in) Creates a new input stream with a default buffer size. |
2 |
GZIPInputStream(InputStream in, int size) Creates a new input stream with the specified buffer size. |
Sr.No. | Method & Description |
---|---|
1 | void close()
Closes this input stream and releases any system resources associated with the stream. |
2 | int read(byte[] buf, int off, int len)
Reads uncompressed data into an array of bytes. |
此类从以下类继承方法-