鲜艳火

文章
4
资源
0
加入时间
2年10月21天

java之Byte Hex转换

点击查看原文字节(byte)转十六进制(Hex)/** * Byte字节转Hex * @param b 字节 * @return Hex */ public static String byteToHex(byte b) { String hexString = Integer.toHexString(b & 0xFF); //由于十六进制是由0~9、A~F来表示1~16,所以如果Byte转换成Hex后如