Vi kan konvertere binær til decimal i java ved brug af Integer.parseInt() metode eller brugerdefineret logik.
Java binær 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 enkle eksempel på at konvertere binær til decimal i java.
public class BinaryToDecimalExample1{ public static void main(String args[]){ String binaryString='1010'; int decimal=Integer.parseInt(binaryString,2); System.out.println(decimal); }}Test det nu
Produktion:
css-justeringsbilleder
10
Lad os se et andet eksempel på metoden Integer.parseInt().
public class BinaryToDecimalExample2{ public static void main(String args[]){ System.out.println(Integer.parseInt('1010',2)); System.out.println(Integer.parseInt('10101',2)); System.out.println(Integer.parseInt('11111',2)); }}Test det nu
Produktion:
10 21 31
Java binær til decimal konvertering: Custom Logic
Vi kan konvertere binær til decimal i java ved hjælp af tilpasset logik.
java regex til
public class BinaryToDecimalExample3{ public static int getDecimal(int binary){ int decimal = 0; int n = 0; while(true){ if(binary == 0){ break; } else { int temp = binary%10; decimal += temp*Math.pow(2, n); binary = binary/10; n++; } } return decimal; } public static void main(String args[]){ System.out.println('Decimal of 1010 is: '+getDecimal(1010)); System.out.println('Decimal of 10101 is: '+getDecimal(10101)); System.out.println('Decimal of 11111 is: '+getDecimal(11111)); }}Test det nu
Produktion:
Decimal of 1010 is: 10 Decimal of 10101 is: 21 Decimal of 11111 is: 31