binarystring to int java code example
Example 1: binary string to int java
int decimal=Integer.parseInt(binaryString,2);
Example 2: binary to int java
int foo = Integer.parseInt("1001", 2); // 2 is the radix
int decimal=Integer.parseInt(binaryString,2);
int foo = Integer.parseInt("1001", 2); // 2 is the radix