Vi kan konvertere hexadecimal til decimal i java ved brug af Integer.parseInt() metode eller brugerdefineret logik.
Java hexadecimal til decimal konvertering: Integer.parseInt()
Metoden Integer.parseInt() konverterer streng til int med givet redix. Det Underskrift af parseInt() metode er givet nedenfor:
public static int parseInt(String s,int redix)
Lad os se det simple eksempel på at konvertere hexadecimal til decimal i java.
public class HexToDecimalExample1{ public static void main(String args[]){ String hex='a'; int decimal=Integer.parseInt(hex,16); System.out.println(decimal); }}Test det nu
Produktion:
10
Lad os se et andet eksempel på metoden Integer.parseInt().
public class HexToDecimalExample2{ public static void main(String args[]){ System.out.println(Integer.parseInt('a',16)); System.out.println(Integer.parseInt('f',16)); System.out.println(Integer.parseInt('121',16)); }}Test det nu
Produktion:
10 15 289
Java hexadecimal til decimal konvertering: Custom Logic
Vi kan konvertere hexadecimal til decimal i java ved hjælp af tilpasset logik.
public class HexToDecimalExample3{ public static int getDecimal(String hex){ String digits = '0123456789ABCDEF'; hex = hex.toUpperCase(); int val = 0; for (int i = 0; i <hex.length(); 121 i++) { char c="hex.charAt(i);" int d="digits.indexOf(c);" val="16*val" + d; } return val; public static void main(string args[]){ system.out.println('decimal of a is: '+getdecimal('a')); f '+getdecimal('f')); '+getdecimal('121')); }} < pre> <span> Test it Now </span> <p>Output:</p> <pre> Decimal of a is: 10 Decimal of f is: 15 Decimal of 121 is: 289 </pre></hex.length();>