Software Development Network>> Visual J#>> How can i convert integer number into hexadecimal in J# ?
Hi Younis,
You can try using Static method of java.lang.Integer class: toHexString(int)
Signature: String java.lang.Integer.toHexString(int)
Example: System.out.println(java.lang.Integer.toHexString(1122)); Output: 462
Varun
Visual J# Microsoft Corporation
How can i convert integer number into hexadecimal in J# ?
klingmeister
Hi Younis,
You can try using Static method of java.lang.Integer class: toHexString(int)
Signature: String java.lang.Integer.toHexString(int)
Example: System.out.println(java.lang.Integer.toHexString(1122)); Output: 462
Varun
Visual J#
Microsoft Corporation