java.util.zip.CRC32.update( byte[] b, int off, int len ) Method Example



Description

The java.util.zip.CRC32.update(byte[] b, int off, int len) method updates the checksum with the specified array of bytes.

Declaration

Following is the declaration for java.util.zip.CRC32.update(byte[] b, int off, int len) method.

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

Parameters

  • b − the byte array to update the checksum with.

  • off − the start offset of the data.

  • len − the number of bytes to use for the update.

Example

The following example shows the usage of java.util.zip.CRC32.update(byte[] b) method.

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);
   }
}

Let us compile and run the above program, this will produce the following result −

CRC32 checksum :1734172551
javazip_crc32.htm
Advertisements