java CRC32

javaCRC32、CRC32/MPEG-2

CRC32

java官方提供库CRC32 类

byte[] b = new byte[100];//用于验证的数据
CRC32 c = new CRC32();
c.reset();//Resets CRC-32 to initial value.
c.update(b, 0, b.length);//将数据丢入CRC32解码器
int value = (int) c.getValue();//获取CRC32 的值  默认返回值类型为long 用于保证返回值是一个正数

自行实现

	public static int crc32(byte[] data, int offset,int length){
	    byte i;
	    int crc = 0xffffffff;        // Initial value
	    length += offset;
	    for(int j=offset;j<length;j++) {
	    	crc ^= data[j];                
	    	for (i = 0; i < 8; ++i)
	    	{
	    		if ((crc & 1) != 0)
	    			crc = (crc >> 1) ^ 0xEDB88320;// 0xEDB88320= reverse 0x04C11DB7
	    		else
	    			crc = (crc >> 1);
	    	}
	    }
	    return ~crc;
	}

CRC32/MPEG-2

这个java库没发现 只有自行实现的

	public static int crc32_mpeg_2(byte[] data,int offset, int length){
	    byte i;
	    int crc = 0xffffffff;  // Initial value
	    length += offset;
	    for(int j=offset;j<length;j++) {
	    	crc ^= data[j] << 24;
	    	for (i = 0; i < 8; ++i)
	    	{
	    		if ( (crc & 0x80000000) != 0)
	    			crc = (crc << 1) ^ 0x04C11DB7;
	    		else
	    			crc <<= 1;
	    	}
	    }
	    return crc;
	}
上一篇:NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed. (Cocoa error 3840.)"


下一篇:[转]CRC校验