Mam liczbę całkowitą: 1695609641
kiedy używam metody:
String hex = Integer.toHexString(1695609641);
system.out.println(hex);
daje:
6510f329
ale chcę tablicę bajtów:
byte[] bytearray = new byte[] { (byte) 0x65, (byte)0x10, (byte)0xf3, (byte)0x29};
Jak mogę to zrobić?