📜  java.util.zip-CheckedInputStream类

📅  最后修改于: 2020-11-14 10:51:00             🧑  作者: Mango


介绍

java.util.zip.CheckedInputStream类是一个输入流,还维护着正在读取的数据的校验和。然后可以使用校验和来验证输入数据的完整性。

类声明

以下是java.util.zip.CheckedInputStream类的声明-

public class CheckedInputStream
   extends FilterInputStream

建设者

Sr.No. Constructor & Description
1

CheckedInputStream(InputStream in, Checksum cksum)

Creates an input stream using the specified Checksum.

类方法

Sr.No. Method & Description
1 Checksum getChecksum()

Returns the Checksum for this input stream.

2 int read()

Reads a byte.

3 int read(byte[] buf, int off, int len)

Reads into an array of bytes.

4 long skip(long n)

Skips specified number of bytes of input.

方法继承

此类从以下类继承方法-

  • java.io.FilterInputStream
  • java.lang.Object

打印