📅  最后修改于: 2020-11-14 10:50:44             🧑  作者: Mango
java.util.zip.Adler32类是可用于计算数据流的Adler-32校验和的类。 Adler-32校验和几乎与CRC-32一样可靠,但计算速度更快。
以下是java.util.zip.Adler32类的声明-
public class Adler32
extends Object
implements Checksum
Sr.No. | Constructor & Description |
---|---|
1 |
Adler32() Creates a new Adler32 object. |
Sr.No. | Method & Description |
---|---|
1 | long getValue()
Returns the checksum value. |
2 | void reset()
Resets the checksum to initial value. |
3 | void update(byte[] b)
Updates the checksum with the specified array of bytes. |
4 | void update(byte[] b, int off, int len)
Updates the checksum with the specified array of bytes. |
5 | void update(int b)
Updates the checksum with the specified byte (the low eight bits of the argument b). |
此类从以下类继承方法-