可能重复:
Convert a string representation of a hex dump to a byte array using Java?
我有一个MD5字符串
de70d4de8c47385536c8e08348032c3b
我需要它作为字节值
DE 70 D4 DE 8C 47 38 55 36 C8 E0 83 48 03 2C 3B
这应该类似于Perls pack("H32);
函数。
答案 0 :(得分:3)
您可以查看Apache Commons Codec Hex.decodeHex()
答案 1 :(得分:2)
遍历String
并使用Byte.decode(String)
函数填充字节数组。
答案 2 :(得分:1)
未经验证的:
String md5 = "de70d4de8c47385536c8e08348032c3b";
byte[] bArray = new byte[md5.length() / 2];
for(int i = 0, k = 0; i < md5.lenth(); i += 2, k++) {
bArray[k] = (byte) Integer.parseInt(md5[i] + md5[i+1], 16);
}
答案 3 :(得分:1)
有很多方法可以做到这一点。这是一个:
public static void main(String[] args) {
String s = "de70d4de8c47385536c8e08348032c3b";
Matcher m = Pattern.compile("..").matcher(s);
List<Byte> bytes = new ArrayList<Byte>();
while (m.find())
bytes.add((byte) Integer.parseInt(m.group(), 16));
System.out.println(bytes);
}
输出(-34
== 0xde
):
[-34, 112, -44, -34, -116, 71, 56, 85, 54, -56, -32, -125, 72, 3, 44, 59]