RosettaCodeData/Task/CRC-32/Java/crc-32-2.java
2023-07-01 13:44:08 -04:00

6 lines
238 B
Java

public static void main(String[] args) throws IOException {
String string = "The quick brown fox jumps over the lazy dog";
CRC32 crc = new CRC32();
crc.update(string.getBytes());
System.out.printf("%x", crc.getValue());
}