java.util.zip.Adler32.update(byte[] b, int off, int len)
方法用指定的位元組陣列更新校驗和。
宣告
以下是java.util.zip.Adler32.update(byte[] b, int off, int len)
方法的宣告。
public void update(byte[] b, int off, int len)
引數
返回值
範例
以下範例顯示了java.util.zip.Adler32.update(byte[] b, int off, int len)
方法的用法。
package com.yiibai;
import java.util.zip.Adler32;
import java.util.zip.Checksum;
public class Adler32Demo {
public static void main(String[] args) {
String message = "Welcome to Tw511.com";
byte bytes[] = message.getBytes();
Checksum checksum = new Adler32();
checksum.reset();
checksum.update(bytes,0,bytes.length);
long checksumValue = checksum.getValue();
System.out.println("Adler32 checksum :" + checksumValue);
}
}
執行上面範例程式碼,得到以下結果 -
Adler32 checksum :27997014