将字节数组转换成十六进制字符串表示时间:2023-01-01 19:00:34将字节数组转换成十六进制字符串表示 public static String hexString(byte[] bs) { return new BigInteger(1, bs).toString(16); }