回答:
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] == 0xAA
、result[1] == 0xBB
、result[2] == 0xCC
とresult[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
クラスは、しかし、そのような汚れた手の仕事のために設計されました。実際、private 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); }
使用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();
}
ByteBuffer
1 -あなたは2 ^ 31よりもint型の大きなを扱っている場合は、より直感的である
この機能を使用してください
public byte[] toByteArray(int value) {
return new byte[] {
(byte)(value >> 24),
(byte)(value >> 16),
(byte)(value >> 8),
(byte)value};
}
intをバイト値に変換します
Guavaが好きな場合は、そのInts
クラスを使用できます。
以下の場合int
→ byte[]
使用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
です。
使用できます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バイトを挿入することに注意する必要があります。これは、正の値と負の値を区別するために必要です。
これは、適切に機能するメソッドです。
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;
};
それは私の解決策です:
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);
}
}
また、String
yメソッド:
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;
}