How can i convert integer number into hexadecimal in J# ?

Hi
This the first time for me at this forum, and i want to get started with a question Big Smile
How can i convert integer number into hexadecimal in J#

Regards
Younis


Answer this question

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



  • How can i convert integer number into hexadecimal in J# ?