binary to decimal java code code example
Example 1: binary to integer in java
System.out.println(Integer.parseInt("1010",2));
Example 2: binary to int java
int foo = Integer.parseInt("1001", 2); // 2 is the radix
System.out.println(Integer.parseInt("1010",2));
int foo = Integer.parseInt("1001", 2); // 2 is the radix