Mega Code Archive

 
Categories / Java / Data Type
 

Convert Decimal to Binary

public class Main {   public static void main(String[] args) {     int integer = 127;     String binary = Integer.toBinaryString(integer);     System.out.println("Binary value of " + integer + " is " + binary + ".");     int original = Integer.parseInt(binary, 2);     System.out.println("Integer value of binary '" + binary + "' is " + original + ".");   } }