java计算校验和:对“消息头+会话头+事务头+操作信息”按32位异或,对异或结果取反后的值为校验和。
/**
* 计算校验和<br>
* <p>对“消息头+会话头+事务头+操作信息”按32位异或,对异或结果取反后的值为校验和。
* @param msg
* @return
*/
private String calcCheckSum(String msg) {
byte[] arr = msg.getBytes();
byte[] res = new byte[4];
for (int i = 0; i < arr.length; i += 4) {
res[0] ^= arr[i];
res[1] ^= arr[i + 1];
res[2] ^= arr[i + 2];
res[3] ^= arr[i + 3];
}
res[0] = (byte) ~res[0];
res[1] = (byte) ~res[1];
res[2] = (byte) ~res[2];
res[3] = (byte) ~res[3];
String resStr = "";
for (int i = 0; i < 4; i++) {
resStr = resStr + byte2hex(res[i]);
}
return resStr;
}
/**
* 将单字节转成16进制<br>
* @param b
* @return
*/
private String byte2hex(byte b) {
StringBuffer buf = new StringBuffer();
char[] hexChars = {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C',
'D', 'E', 'F'
};
int high = ((b & 0xf0) >> 4);
int low = (b & 0x0f);
buf.append(hexChars[high]);
buf.append(hexChars[low]);
return buf.toString();
}
16进制表示的16位或32位整数,高8位位组在前,低8位位组在后。举个例子:
int n = 148; // 转换成4字节,16进制
int hi = n >> 8 ; //高16位
int lo = n & 0x00ff; //低16位
String hig = Integer.toHexString(hi); //长度不足,再补0
String low = Integer.toHexString(lo); // 16进制
----------------------------------------------------------------
这样148按要求就转换成了0094