java.util.zip.Adler32.update(byte[] b, int off, int len)方法範例

2019-10-16 22:37:04

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)

引數

  • b - 用於更新校驗和的位元組陣列。
  • off - 資料的起始偏移量。
  • len - 用於更新的位元組數。

返回值

  • N/A

範例

以下範例顯示了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