publicclassHexPrinter{publicstaticvoidmain(String[]args){// 步骤 1: 创建 byte 数组byte[]byteArray=newbyte[]{10,2,15,(byte)255};// 步骤 2: 使用 HexFormat 转换为十六进制字符串Stringhex=java.util.HexFormat.of().withUpperCase().formatHex(byteArray);// 步骤 3: 打印十六进制字符串System.o...