I assume aa568 uses a different base than 10.
What type of number is this most likely?
And how do you convert a decimal number into this base using Java?
|
|
Assuming it is hexadecimal (0-9 + A-F instead of 0-9), you can convert it from hex to decimal as follows:
Where 16 is the base of the number system. Decimal is base 10, hexadecimal is base 16. And back from decimal to hexadecimal:
|
||||
|
Converting a number into a hexadecimal string can be done by the
will print "aa568". |
|||
|
|
|
I'd assume that it's hexadecimal and more typically written 0xAA568 which is decimal 697704. If you're asking how you would print a decimal number in a hexadecimal representation using Java ... see this stackoverflow article. |
|||
|
|