前言
关于计算CRC16校验码,高低位取反(java)
方法
public static String getCRC(byte[] bytes) {
int CRC = 0x0000ffff;
int POLYNOMIAL = 0x0000a001;
int i, j;
for (i = 0; i < bytes.length; i++) {
CRC ^= ((int) bytes[i] & 0x000000ff);
for (j = 0; j < 8; j++) {
if ((CRC & 0x00000001) != 0) {
CRC >>= 1;
CRC ^= POLYNOMIAL;
} else {
CRC >>= 1;
}
}
}
CRC = ((CRC & 0xff00) >> 8) | ((CRC & 0x00ff) << 8);
return Integer.toHexString(CRC);
}