Java

CRC32 Checksum In Java1 min read

Java Code:

Get the byte array of a String, using getBytes() API method of String.




Create a new Checksum object, that represents a data checksum.

Update the current checksum with the specified array of bytes, using update(byte[] b, int off, int len) API method of Checksum.

Get the current checksum long value, using getValue() API method of Checksum.

Leave a Comment