web-dev-qa-db-ja.com

整数をバイト配列に変換(Java)

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

例えば0xAABBCCDD => {AA, BB, CC, DD}

125
Buttercup

ByteBuffer クラスをご覧ください。

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] == 0xAAresult[1] == 0xBBresult[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); }
218
Gregory Pakosz

BigIntegerの使用:

private byte[] bigIntToByteArray( final int i ) {
    BigInteger bigInt = BigInteger.valueOf(i);      
    return bigInt.toByteArray();
}

DataOutputStreamの使用:

private byte[] intToByteArray ( final int i ) throws IOException {      
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    DataOutputStream dos = new DataOutputStream(bos);
    dos.writeInt(i);
    dos.flush();
    return bos.toByteArray();
}

ByteBufferの使用:

public byte[] intToBytes( final int i ) {
    ByteBuffer bb = ByteBuffer.allocate(4); 
    bb.putInt(i); 
    return bb.array();
}
33
Pascal Thivent

この機能を使用してください

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

intをバイト値に変換します

27
daz

Guava が好きなら、 Ints クラスを使用できます:


intbyte[]の場合、 toByteArray() を使用します。

byte[] byteArray = Ints.toByteArray(0xAABBCCDD);

結果は{0xAA, 0xBB, 0xCC, 0xDD}です。


その逆は fromByteArray() または fromBytes()

int intValue = Ints.fromByteArray(new byte[]{(byte) 0xAA, (byte) 0xBB, (byte) 0xCC, (byte) 0xDD});
int intValue = Ints.fromBytes((byte) 0xAA, (byte) 0xBB, (byte) 0xCC, (byte) 0xDD);

結果は0xAABBCCDDです。

13
Pang

BigIntegerを使用できます。

整数から:

byte[] array = BigInteger.valueOf(0xAABBCCDD).toByteArray();
System.out.println(Arrays.toString(array))
// --> {-86, -69, -52, -35 }

返される配列は、数値を表すのに必要なサイズであるため、たとえば1を表すためにサイズ1にすることができます。ただし、intが渡される場合、サイズは4バイトを超えることはできません。

文字列から:

BigInteger v = new BigInteger("AABBCCDD", 16);
byte[] array = v.toByteArray();

ただし、最初のバイトが0x7F(この場合)の上位である場合、BigIntegerが配列の先頭に0x00バイトを挿入することに注意する必要があります。これは、正の値と負の値を区別するために必要です。

8
notnoop

それは私の解決策です:

public void getBytes(int val) {
    byte[] bytes = new byte[Integer.BYTES];
    for (int i = 0;i < bytes.length; i ++) {
        int j = val % Byte.MAX_VALUE;
        bytes[i] = (j == 0 ? Byte.MAX_VALUE : j);
    }
}

またStringyメソッド:

public void getBytes(int val) {
    String hex = Integer.toHexString(val);
    byte[] val = new byte[hex.length()/2]; // because byte is 2 hex chars
    for (int i = 0; i < hex.length(); i+=2)
        val[i] = Byte.parseByte("0x" + hex.substring(i, i+2), 16);
    return val;
}
0
Muskovets

シフトすることもできます-

byte[] ba = new byte[4];
int val = Integer.MAX_VALUE;

for(byte i=0;i<4;i++)
    ba[i] = (byte)(val >> i*8);
    //ba[3-i] = (byte)(val >> i*8); //Big-endian
0
Matt

これはあなたを助けます

import Java.nio.ByteBuffer; import Java.util.Arrays;

public class MyClass 
{
    public static void main(String args[]) {
       byte [] hbhbytes = ByteBuffer.allocate(4).putInt(16666666).array();

  System.out.println(Arrays.toString(hbhbytes));
    }
}
0
wai

これが適切な仕事をする方法です。

public byte[] toByteArray(int value)
{
    final byte[] destination = new byte[Integer.BYTES];
    for(int index = Integer.BYTES - 1; index >= 0; index--)
    {
        destination[i] = (byte) value;
        value = value >> 8;
    };
    return destination;
};
0
user3424779