Java中Hex(十六进制)和byte[]之间相互转化

Hex转成byte[]

方法一

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* hex转byte数组
* @param hex
* @return
*/
public static byte[] hexToByte(String hex){
int m = 0, n = 0;
int byteLen = hex.length() / 2; // 每两个字符描述一个字节
byte[] ret = new byte[byteLen];
for (int i = 0; i < byteLen; i++) {
m = i * 2 + 1;
n = m + 1;
int intVal = Integer.decode("0x" + hex.substring(i * 2, m) + hex.substring(m, n));
ret[i] = Byte.valueOf((byte)intVal);
}
return ret;
}

byte[]转Hex

方法一

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
* byte数组转hex
* @param bytes
* @return
*/
public static String byteToHex(byte[] bytes){
String strHex = "";
StringBuilder sb = new StringBuilder("");
for (int n = 0; n < bytes.length; n++) {
strHex = Integer.toHexString(bytes[n] & 0xFF);
sb.append((strHex.length() == 1) ? "0" + strHex : strHex); // 每个字节由两个字符表示,位数不够,高位补0
}
return sb.toString().trim();
}

方法二

1
String.format("%02x", oneByte);

Java中Hex(十六进制)和byte[]之间相互转化
https://fulequn.github.io/2020/08/Article202008302/
作者
Fulequn
发布于
2020年8月30日
许可协议