logo

Java 16 進数を 10 進数に変換する

変換できます Javaでの16進数から10進数へ 使用して Integer.parseInt() メソッドまたはカスタム ロジック。

Java 16 進数から 10 進数への変換: Integer.parseInt()

Integer.parseInt() メソッドは、指定された redix を使用して文字列を int に変換します。の サイン parseInt() メソッドの内容は以下のとおりです。

 public static int parseInt(String s,int redix) 

Java で 16 進数を 10 進数に変換する簡単な例を見てみましょう。

 public class HexToDecimalExample1{ public static void main(String args[]){ String hex='a'; int decimal=Integer.parseInt(hex,16); System.out.println(decimal); }} 
今すぐテストしてください

出力:

 10 

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)); }} 
今すぐテストしてください

出力:

 10 15 289 

Java 16 進数から 10 進数への変換: カスタム ロジック

変換できます Javaでの16進数から10進数へ カスタム ロジックを使用します。

 public class HexToDecimalExample3{ public static int getDecimal(String hex){ String digits = &apos;0123456789ABCDEF&apos;; 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();>