esuslogo
 [To advertise Java(tm) Events here, contact joris@esus.com!]
banner

Java™
by example!






New @ Esus.com


  gb  In-house search engine for better results!

  gb  Get updates with the esus.com
newsletter!









  Home 
 Browse Categories 
 Ask a Java Question 
 Help 
  For Java Tips & Tricks, subscribe to the esus.com newsletter!
Search Java Q&A, Links, API's:   adv 

How do I calculate the checksum of a byte array using CRC32?
Use the CRC32 class in the java.util.zip package. It contains an implementation of an algorithm to calculate the checksum of a set of bytes. It is slighly slower than Adler32, a class with the same purpose, but it generates a better result.

The procedure is simple: create an instance of the CRC32 class, call its method update and provide it with a set of bytes in the order as they appear in the stream. If all bytes have been processed, call getValue to get the checksum as a String.
If you need to calculate checksums of several bytestreams, you can reuse the CRC32 instance but you need to call reset in order to reset it to its original state.

Following example displays a checksum of a file provided at command line.

Main.java:

This code sample is only viewable to esus.com members
Login or become a member!




Further Information
Author of answer: Joris Van den Bogaert

Comments to this answer are only viewable by members. Login or become a member!





Terms of Service | Privacy Policy | Contact

Copyright © 2000-2003 Esus.com - All Rights Reserved 
Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. Esus.com is independent of Sun Microsystems, Inc. All other trademarks are the sole property of their respective owners.