java.util.zip.CRC32 (JDK 1.1)
This class implements the Checksum interface and computes a checksum on a stream of data using the CRC-32 algorithm. The CheckedInputStream and CheckedOutputStream classes provide a higher-level interface to computing checksums on streams of data.
public classCRC32extends Object implements Checksum { //Default Constructor: public CRC32()//Public Instance Methodspublic longgetValue(); //From Checksumpublic voidreset(); //From Checksumpublic voidupdate(intb); //From Checksumpublic native voidupdate(byte[]b, intoff, intlen); //From Checksumpublic voidupdate(byte[]b); }
Type Of:
GZIPInputStream.crc, GZIPOutputStream.crc