CRC16算法之三:CRC16-CCITT-MODBUS算法的java实现
Posted eguid
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CRC16算法之三:CRC16-CCITT-MODBUS算法的java实现相关的知识,希望对你有一定的参考价值。
CRC16算法系列文章:
功能
实现CRC16-CCITT-MODBUS算法
支持int、short类型
支持选择数组区域计算
实现
-
/**
-
* crc16_ccitt_modbus算法(四字节)友情提示:做好自己!--eguid博客地址:http://blog.csdn.net/eguid_1
-
* @param buf
-
* @param offset
-
* @param length
-
* @return
-
*/
-
public static int crc16_ccitt_modbus(byte[] buf,int offset, int length) {
-
int i, j;
-
int c, crc = 0xFFFF;
-
for (i = offset; i < length; i++) {
-
c = buf[i] & 0x00FF;
-
crc ^= c;
-
for (j = 0; j < 8; j++) {
-
if ((crc & 0x0001) != 0) {
-
crc >>= 1;
-
crc ^= 0xA001;
-
} else
-
crc >>= 1;
-
}
-
}
-
return crc;
-
}
-
-
/**
-
* crc16_ccitt_modbus算法(四字节)
-
* @param buf
-
* @return
-
*/
-
public static int crc16_ccitt_modbus(byte[] buf) {
-
return crc16_ccitt_modbus(buf,0,buf.length);
-
}
-
-
-
/**
-
* crc16_ccitt_modbus算法(两字节)
-
* @param buf
-
* @param offset
-
* @param length
-
* @return
-
*/
-
public static int crc16_ccitt_modbus_short(byte[] buf,int offset, int length) {
-
return (short)crc16_ccitt_modbus(buf,offset,length);
-
}
-
-
/**
-
* crc16_ccitt_modbus算法(两字节)
-
* @param buf
-
* @return
-
*/
-
public static int crc16_ccitt_modbus_short(byte[] buf) {
-
return (short)crc16_ccitt_modbus(buf,0,buf.length);
-
}
以上是关于CRC16算法之三:CRC16-CCITT-MODBUS算法的java实现的主要内容,如果未能解决你的问题,请参考以下文章