我有一个 MD5 字符串
de70d4de8c47385536c8e08348032c3b
我需要它作为字节值
DE 70 D4 DE 8C 47 38 55 36 C8 E0 83 48 03 2C 3B
这应该类似于 Perlspack("H32);
函数。
我有一个 MD5 字符串
de70d4de8c47385536c8e08348032c3b
我需要它作为字节值
DE 70 D4 DE 8C 47 38 55 36 C8 E0 83 48 03 2C 3B
这应该类似于 Perlspack("H32);
函数。
你可以看看 Apache Commons Codec Hex.decodeHex()
循环String
并使用Byte.decode(String)
函数来填充字节数组。
有很多方法可以做到这一点。这是一个:
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]
未经证实:
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);
}