Risposte:
Dai un'occhiata alla classe 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();
Impostazione garantisce l'ordine byte result[0] == 0xAA
, result[1] == 0xBB
, result[2] == 0xCC
e result[3] == 0xDD
.
O in alternativa, puoi farlo manualmente:
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;
}
La ByteBuffer
classe è stata progettata per compiti così sporchi. In effetti il privato java.nio.Bits
definisce questi metodi di supporto che sono usati da 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); }
Utilizzando BigInteger
:
private byte[] bigIntToByteArray( final int i ) {
BigInteger bigInt = BigInteger.valueOf(i);
return bigInt.toByteArray();
}
Utilizzando 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();
}
Utilizzando ByteBuffer
:
public byte[] intToBytes( final int i ) {
ByteBuffer bb = ByteBuffer.allocate(4);
bb.putInt(i);
return bb.array();
}
ByteBuffer
è più intuitiva se hai a che fare con un int maggiore di 2 ^ 31 - 1.
usa questa funzione funziona per me
public byte[] toByteArray(int value) {
return new byte[] {
(byte)(value >> 24),
(byte)(value >> 16),
(byte)(value >> 8),
(byte)value};
}
traduce int in un valore byte
Se ti piace Guava , puoi usare la sua Ints
classe:
Per int
→ byte[]
, utilizzare toByteArray()
:
byte[] byteArray = Ints.toByteArray(0xAABBCCDD);
Il risultato è {0xAA, 0xBB, 0xCC, 0xDD}
.
Il suo rovescio è fromByteArray()
o 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);
Il risultato è 0xAABBCCDD
.
Puoi usare BigInteger
:
Da interi:
byte[] array = BigInteger.valueOf(0xAABBCCDD).toByteArray();
System.out.println(Arrays.toString(array))
// --> {-86, -69, -52, -35 }
L'array restituito ha le dimensioni necessarie per rappresentare il numero, quindi potrebbe essere della dimensione 1, ad esempio 1. Tuttavia, la dimensione non può essere superiore a quattro byte se viene passato un int.
Dalle stringhe:
BigInteger v = new BigInteger("AABBCCDD", 16);
byte[] array = v.toByteArray();
Tuttavia, dovrai fare attenzione, se il primo byte è più alto 0x7F
(come in questo caso), in cui BigInteger inserirà un byte 0x00 all'inizio dell'array. Ciò è necessario per distinguere tra valori positivi e negativi.
molto facile con 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);
Ecco un metodo che dovrebbe fare il lavoro giusto.
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;
};
È la mia soluzione:
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);
}
}
Anche String
y metodo:
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;
}