Ответы:
Посмотрите на класс 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
более интуитивно
используйте эту функцию, она работает для меня
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.
Из строк:
BigInteger v = new BigInteger("AABBCCDD", 16);
byte[] array = v.toByteArray();
Тем не менее, вам нужно следить, если первый байт будет выше 0x7F
(как в этом случае), где BigInteger вставит байт 0x00 в начало массива. Это необходимо для различения положительных и отрицательных значений.
очень легко с Android
int i=10000;
byte b1=(byte)Color.alpha(i);
byte b2=(byte)Color.red(i);
byte b3=(byte)Color.green(i);
byte b4=(byte)Color.blue(i);
Вот метод, который должен делать работу правильно.
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
у метод:
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;
}