1、字节数组(byte[])转为十六进制(Hex)字符串 Hex.encodeHexString(input);2、十六进制字符串(Hex)转字节数字(byte[])Hex.decodeHex(input.toCharArray());