web-dev-qa-db-ja.com

Java整数からバイト配列

整数を取得しました:1695609641

私がmethodを使うとき:

String hex = Integer.toHexString(1695609641);
system.out.println(hex); 

を与えます:

6510f329

しかし、私はバイト配列が欲しい:

byte[] bytearray = new byte[] { (byte) 0x65, (byte)0x10, (byte)0xf3, (byte)0x29};

どうすればこれを作ることができますか?

170
stefan

java NIOの ByteBuffer を使うのはとても簡単です。

byte[] bytes = ByteBuffer.allocate(4).putInt(1695609641).array();

for (byte b : bytes) {
   System.out.format("0x%x ", b);
}

出力:

 0x65 0x10 0xf3 0x29 
276
dfa

どうですか?

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

考えは私のものではないです。私は dzone.comへの投稿 からそれを取った。

137

BigInteger.valueOf(1695609641).toByteArray()

40
vmpn
byte[] IntToByteArray( int data ) {

byte[] result = new byte[4];

result[0] = (byte) ((data & 0xFF000000) >> 24);
result[1] = (byte) ((data & 0x00FF0000) >> 16);
result[2] = (byte) ((data & 0x0000FF00) >> 8);
result[3] = (byte) ((data & 0x000000FF) >> 0);

return result;
}

グアバ を使う:

byte[] bytearray = Ints.toByteArray(1695609641);
16
byte[] conv = new byte[4];
conv[3] = (byte) input & 0xff;
input >>= 8;
conv[2] = (byte) input & 0xff;
input >>= 8;
conv[1] = (byte) input & 0xff;
input >>= 8;
conv[0] = (byte) input;
7
Carl Smotricz
public static byte[] intToBytes(int x) throws IOException {
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    DataOutputStream out = new DataOutputStream(bos);
    out.writeInt(x);
    out.close();
    byte[] int_bytes = bos.toByteArray();
    bos.close();
    return int_bytes;
}
4
lyon819

以下のチャンクは少なくともUDP経由でintを送信するためにはたらきます。

intからバイト配列:

public byte[] intToBytes(int my_int) throws IOException {
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    ObjectOutput out = new ObjectOutputStream(bos);
    out.writeInt(my_int);
    out.close();
    byte[] int_bytes = bos.toByteArray();
    bos.close();
    return int_bytes;
}

intへのバイト配列:

public int bytesToInt(byte[] int_bytes) throws IOException {
    ByteArrayInputStream bis = new ByteArrayInputStream(int_bytes);
    ObjectInputStream ois = new ObjectInputStream(bis);
    int my_int = ois.readInt();
    ois.close();
    return my_int;
}
4
HaoQi Li
integer & 0xFF

最初のバイト

(integer >> 8) & 0xFF

2番目のループなどでは、事前に割り当てられたバイト配列に書き込みます。残念ながら、少し面倒です。

1
Brian Agnew

私の試み:

public static byte[] toBytes(final int intVal, final int... intArray) {
    if (intArray == null || (intArray.length == 0)) {
        return ByteBuffer.allocate(4).putInt(intVal).array();
    } else {
        final ByteBuffer bb = ByteBuffer.allocate(4 + (intArray.length * 4)).putInt(intVal);
        for (final int val : intArray) {
            bb.putInt(val);
        }
        return bb.array();
    }
}

それを使えば、これを行うことができます。

byte[] fourBytes = toBytes(0x01020304);
byte[] eightBytes = toBytes(0x01020304, 0x05060708);

フルクラスはこちら: https://Gist.github.com/superbob/654849 、ショートまたはロングからの初期化をサポートします

byte[] eightBytesAgain = toBytes(0x0102030405060708L);
1
superbob

一般的に、後でこの配列をintに変換し直す必要があるので、整数の配列をバイトの配列に変換する方法、およびその逆の方法があります。

public static byte[] convertToByteArray(final int[] pIntArray)
{
    final byte[] array = new byte[pIntArray.length * 4];
    for (int j = 0; j < pIntArray.length; j++)
    {
        final int c = pIntArray[j];
        array[j * 4] = (byte)((c & 0xFF000000) >> 24);
        array[j * 4 + 1] = (byte)((c & 0xFF0000) >> 16);
        array[j * 4 + 2] = (byte)((c & 0xFF00) >> 8);
        array[j * 4 + 3] = (byte)(c & 0xFF);
    }
    return array;
}

public static int[] convertToIntArray(final byte[] pByteArray)
{
    final int[] array = new int[pByteArray.length / 4];
    for (int i = 0; i < array.length; i++)
        array[i] = (((int)(pByteArray[i * 4]) << 24) & 0xFF000000) |
                (((int)(pByteArray[i * 4 + 1]) << 16) & 0xFF0000) |
                (((int)(pByteArray[i * 4 + 2]) << 8) & 0xFF00) |
                ((int)(pByteArray[i * 4 + 3]) & 0xFF);
    return array;
}

符号伝搬などのため、intに変換するときは "&0xFF ..."が必要です。

1
jytou

Org.Apache.hadoop.hbase.util.Bytesクラスには便利なbyte []変換メソッドがたくさんありますが、この目的のためだけにHBase jar全体をプロジェクトに追加したくない場合があります。そのようなメソッドがJDKか​​らAFAIKを欠いているだけでなく、commons ioのような明白なライブラリからも欠けているのは驚くべきことです。

1
mlohbihler

あなたが使用している場合 Apache-commons

public static byte[] toByteArray(int value) {
    byte result[] = new byte[4];
    return Conversion.intToByteArray(value, 0, result, 0, 4);
}
0
Neeraj