java.lang.Object java.util.zip.CRC32
可用于计算数据流的 CRC-32 的类。
Checksum
构造方法摘要 | |
---|---|
CRC32() 创建新的 CRC32 对象。 |
方法摘要 | |
---|---|
long |
getValue() 返回 CRC-32 值。 |
void |
reset() 将 CRC-32 重置为初始值。 |
void |
update(byte[] b) 使用指定的字节数组更新校验和。 |
void |
update(byte[] b, int off, int len) 使用指定的字节数组更新 CRC-32。 |
void |
update(int b) 使用指定字节更新 CRC-32。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public CRC32()
方法详细信息 |
---|
public void update(int b)
public void update(byte[] b, int off, int len)
public void update(byte[] b)
b
- 更新校验和使用的字节数组
public void reset()
public long getValue()