1

可能重复:
使用 Java 将十六进制转储的字符串表示形式转换为字节数组?

我有一个 MD5 字符串

de70d4de8c47385536c8e08348032c3b

我需要它作为字节值

DE 70 D4 DE 8C 47 38 55 36 C8 E0 83 48 03 2C 3B

这应该类似于 Perlspack("H32);函数。

4

4 回答 4

3

你可以看看 Apache Commons Codec Hex.decodeHex()

于 2012-05-28T13:59:35.993 回答
2

循环String并使用Byte.decode(String)函数来填充字节数组。

于 2012-05-28T13:57:17.137 回答
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]
于 2012-05-28T14:06:55.273 回答
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);
}
于 2012-05-28T14:00:40.800 回答