如何自动转换十六进制代码以在Java中将其用作byte []?

时间:2012-03-08 10:34:19

标签: java hex bytearray converter

我在这里有很多十六进制代码,我希望将它们放入Java而不向每个实体添加0x。像:

0102FFAB我必须做以下事情:

byte[] test = {0x01, 0x02, 0xFF, 0xAB};

我有很多十六进制代码很长。有没有办法自动生成?

2 个答案:

答案 0 :(得分:3)

您可以尝试将十六进制代码放入一个字符串中,然后迭代字符串,类似于:

String input = "0102FFAB";
byte[] bytes = new byte[input.length() / 2];

for( int i = 0; i < input.length(); i+=2)
{
  bytes[i/2] = Integer.decode( "0x" + input.substring( i, i + 2 )  ).byteValue();
}

请注意,这甚至需要长度字符串,这是一个非常快速和肮脏的解决方案。但是,它仍然应该让你开始。

答案 1 :(得分:3)

您可以使用BigInteger加载长十六进制字符串。

public static void main(String[] args) {
    String hex = "c33b2cfca154c3a3362acfbde34782af31afb606f6806313cc0df40928662edd3ef1d630ab1b75639154d71ed490a36e5f51f6c9d270c4062e8266ad1608bdc496a70f6696fa6e7cd7078c6674188e8a49ecba71fad049a3d483ccac45d27aedfbb31d82adb8135238b858143492b1cbda2e854e735909256365a270095fc";
    byte[] bytes2 = hexToBytes(hex);
    for(byte b: bytes2)
        System.out.printf("%02x", b & 0xFF);

}

public static byte[] hexToBytes(String hex) {
    // add a 10 to the start to avoid sign issues, or an odd number of characters.
    BigInteger bi2 = new BigInteger("10" +hex, 16);
    byte[] bytes2 = bi2.toByteArray();
    byte[] bytes = new byte[bytes2.length-1];
    System.arraycopy(bytes2, 1, bytes, 0, bytes.length);
    return bytes;
}

打印

0c33b2cfca154c3a3362acfbde34782af31afb606f6806313cc0df40928662edd3ef1d630ab1b75639154d71ed490a36e5f51f6c9d270c4062e8266ad1608bdc496a70f6696fa6e7cd7078c6674188e8a49ecba71fad049a3d483ccac45d27aedfbb31d82adb8135238b858143492b1cbda2e854e735909256365a270095fc

注意:它处理开始时有一个十六进制值短的可能性。