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



说明

java.util.zip.CRC32.update(byte[] b, int off, int len) 方法使用指定的字节数组来更新校验和。

声明

以下是 java.util.zip.CRC32.update(byte[] b, int off, int len) 方法的声明。

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

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

  • 参数

  • b - 用于更新校验和的字节数组。

  • off - 数据的开始偏移量。

len - 用于更新的字节数。

示例

package com.tutorialspoint;

import java.util.zip.CRC32;
import java.util.zip.Checksum;

public class CRC32Demo {

   public static void main(String[] args) {
      String message = "Welcome to Tutorialspoint.com";
      byte bytes[] = message.getBytes();
      Checksum checksum = new CRC32();
      checksum.reset();       
      checksum.update(bytes,0,bytes.length);
      long checksumValue = checksum.getValue();
      System.out.println("CRC32 checksum :" + checksumValue);
   }
}

以下示例演示了 java.util.zip.CRC32.update(byte[] b) 方法的用法。

CRC32 checksum :1734172551
让我们编译并运行上述程序,这将产生以下结果 -
打印页面