web-dev-qa-db-ja.com

Java-intを4バイトのバイト配列に変換しますか?

可能性のある複製:
整数をバイト配列に変換(Java)

バッファーの長さを4バイトのバイト配列に格納する必要があります。

擬似コード:

private byte[] convertLengthToByte(byte[] myBuffer)
{
    int length = myBuffer.length;

    byte[] byteLength = new byte[4];

    //here is where I need to convert the int length to a byte array
    byteLength = length.toByteArray;

    return byteLength;
}

これを達成する最良の方法は何でしょうか?そのバイト配列を後で整数に戻す必要があることに注意してください。

72
Petey B

次のようにyourIntを使用して、ByteBufferをバイトに変換できます。

return ByteBuffer.allocate(4).putInt(yourInt).array();

その際、 byte order について考える必要があることに注意してください。

121
Waldheinz
public static  byte[] my_int_to_bb_le(int myInteger){
    return ByteBuffer.allocate(4).order(ByteOrder.LITTLE_ENDIAN).putInt(myInteger).array();
}

public static int my_bb_to_int_le(byte [] byteBarray){
    return ByteBuffer.wrap(byteBarray).order(ByteOrder.LITTLE_ENDIAN).getInt();
}

public static  byte[] my_int_to_bb_be(int myInteger){
    return ByteBuffer.allocate(4).order(ByteOrder.BIG_ENDIAN).putInt(myInteger).array();
}

public static int my_bb_to_int_be(byte [] byteBarray){
    return ByteBuffer.wrap(byteBarray).order(ByteOrder.BIG_ENDIAN).getInt();
}
43
Hari Perev

これは動作するはずです:

public static final byte[] intToByteArray(int value) {
    return new byte[] {
            (byte)(value >>> 24),
            (byte)(value >>> 16),
            (byte)(value >>> 8),
            (byte)value};
}

コード ここから引用

Editさらに簡単な解決策は このスレッドで与えられた です。

19
Sorrow
int integer = 60;
byte[] bytes = new byte[4];
for (int i = 0; i < 4; i++) {
    bytes[i] = (byte)(integer >>> (i * 8));
}
19
Stas Jaro