J'ai un nombre entier : 1695609641
quand j'utilise la méthode :
String hex = Integer.toHexString(1695609641);
system.out.println(hex);
donne :
6510f329
mais je veux un tableau d'octets :
byte[] bytearray = new byte[] { (byte) 0x65, (byte)0x10, (byte)0xf3, (byte)0x29};
comment puis-je faire ça ? :D
thnx !
5 votes
Duplicata possible de Convertir un entier en tableau d'octets (Java)
0 votes
Duplicata possible de Convertir un entier en tableau d'octets (Java)