char[] HEX_CHARS = {'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
/*
* byte[]数组转十六进制...[bytes[i] & 0xf];
}
return new String(cbuf);
}
16进制转byte数组
/**
* hex字符串转byte数组
*
* @param inHex 待转换的...Hex字符串
* @return 转换后的byte数组结果
*/
public static byte[] hexToByteArray(String inHex) {
int hexlen