decimal to binary in jvaa code example
Example 1: int to binary java
String binary = Integer.toBinaryString(num);
Example 2: integer to binary java
Integer.toString(100,8) // prints 144 --octal representation
Integer.toString(100,2) // prints 1100100 --binary representation
Integer.toString(100,16) //prints 64 --Hex representation