Loading... ``` 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 & 0x0000FF00) >> 8) | ((CRC & 0x000000FF) << 8); return Integer.toHexString(CRC); } ``` 最后修改:2023 年 10 月 12 日 11 : 51 AM © 允许规范转载 赞赏 要多恰饭才能长胖 赞赏作者 支付宝微信