Here you can find the source of dec2bin(Integer str)
public static String dec2bin(Integer str)
//package com.java2s; //License from project: Apache License public class Main { public static String dec2bin(Integer str) { String num = Integer.toBinaryString(str); return num; }/*w w w .j a v a 2 s .c o m*/ }