I have an array of Strings that represent Binary numbers (without leading zeroes) that I want to convert to their corresponding base 10 numbers. Consider:
bi
You need to specify the radix. There's an overload of Integer#parseInt() which allows you to.
Integer#parseInt()
int foo = Integer.parseInt("1001", 2);