关于Java十六进制输出 求助哇

2025-05-03 09:59:32
推荐回答(1个)
回答(1):

for(byte b : bt) {
  System.out.print(String.format("%02X", b));
}