1. ホーム
  2. java

[解決済み] 整数をバイト配列に変換する(Java)

2022-05-08 06:17:29

質問

を高速に変換する方法は何ですか? IntegerByte Array ?

0xAABBCCDD => {AA, BB, CC, DD}

解決方法は?

をご覧ください。 バイトバッファー クラスがあります。

ByteBuffer b = ByteBuffer.allocate(4);
//b.order(ByteOrder.BIG_ENDIAN); // optional, the initial order of a byte buffer is always BIG_ENDIAN.
b.putInt(0xAABBCCDD);

byte[] result = b.array();

バイトオーダーを設定することで result[0] == 0xAA , result[1] == 0xBB , result[2] == 0xCCresult[3] == 0xDD .

あるいは、手動で行うこともできます。

byte[] toBytes(int i)
{
  byte[] result = new byte[4];

  result[0] = (byte) (i >> 24);
  result[1] = (byte) (i >> 16);
  result[2] = (byte) (i >> 8);
  result[3] = (byte) (i /*>> 0*/);

  return result;
}

ByteBuffer クラスは、このような汚い手を使う作業のために設計されましたが。実際、プライベートな java.nio.Bits が使用するこれらのヘルパーメソッドを定義しています。 ByteBuffer.putInt() :

private static byte int3(int x) { return (byte)(x >> 24); }
private static byte int2(int x) { return (byte)(x >> 16); }
private static byte int1(int x) { return (byte)(x >>  8); }
private static byte int0(int x) { return (byte)(x >>  0); }