📜  java.util.zip-GZIPInputStream类

📅  最后修改于: 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.

方法继承

此类从以下类继承方法-

  • java.util.zip.InflaterInputStream
  • java.io.FilterInputStream
  • java.lang.Object

打印