Můžeme konvertovat šestnáctkové až desítkové v javě použitím Integer.parseInt() metoda nebo vlastní logika.
Java Hexadecimální převod na desítkové: Integer.parseInt()
Metoda Integer.parseInt() převede řetězec na int s daným redixem. The podpis metody parseInt() je uveden níže:
public static int parseInt(String s,int redix)
Podívejme se na jednoduchý příklad převodu šestnáctkové soustavy na desítkovou v jazyce Java.
public class HexToDecimalExample1{ public static void main(String args[]){ String hex='a'; int decimal=Integer.parseInt(hex,16); System.out.println(decimal); }}Otestujte to hned
Výstup:
10
Podívejme se na další příklad metody 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)); }}Otestujte to hned
Výstup:
10 15 289
Java Hexadecimální převod na desítkové: Vlastní logika
Můžeme konvertovat šestnáctkové až desítkové v javě pomocí vlastní logiky.
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();>