Ich habe eine ganze Zahl: 1695609641 wenn ich Methode benutze: String hex = Integer.toHexString(1695609641); system.out.println(hex); gibt: 6510f329 aber ich möchte ein Byte-Array: byte[] bytearray = new byte[] { (byte) 0x65, (byte)0x10, (byte)0xf3, (byte)0x29}; Wie kann ich das...