将字节数组转换成十六进制字符串表示时间:2022-12-14 22:43:46将字节数组转换成十六进制字符串表示 public static String hexString(byte[] bs) { return new BigInteger(1, bs).toString(16); }