Here you can find the source of bin2dec(String str)
public static int bin2dec(String str)
//package com.java2s; //License from project: Apache License public class Main { public static int bin2dec(String str) { int num = Integer.parseInt(str, 2); return num; }/*from ww w. java 2s. co m*/ }