📜  java.util.zip-CRC32类

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


介绍

java.util.zip.CRC32类是可用于计算数据流的CRC-32的类。

类声明

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

public class CRC32
   extends Object
      implements Checksum

建设者

Sr.No. Constructor & Description
1

CRC32()

Creates a new CRC32 object.

类方法

Sr.No. Method & Description
1 long getValue()

Returns the CRC-32 value.

2 void reset()

Resets the CRC-32 to initial value.

3 void update(byte[] b)

Updates the CRC-32 checksum with the specified array of bytes.

4 void update(byte[] b, int off, int len)

Updates the CRC-32 checksum with the specified array of bytes.

5 void update(int b)

Updates the CRC-32 checksum with the specified byte (the low eight bits of the argument b).

方法继承

此类从以下类继承方法-

  • java.lang.Object

打印