मुझे एक पूर्णांक मिला: 1695609641
जब मैं विधि का उपयोग करता हूं:
String hex = Integer.toHexString(1695609641);
system.out.println(hex);
देता है:
6510f329
लेकिन मैं एक बाइट सरणी चाहता हूँ:
byte[] bytearray = new byte[] { (byte) 0x65, (byte)0x10, (byte)0xf3, (byte)0x29};
मैं इसे कैसे बना सकता हूं?