Convert Decimal to Octal : Octal « Data Type « Java






Convert Decimal to Octal

  
 public class Main {

  public static void main(String[] args) {
    int integer = 1024;

    String octal = Integer.toOctalString(integer);

    System.out.printf("Octal value of %d is '%s'.\n", integer, octal);
    System.out.printf("Octal value of %1$d is '%1$o'.\n", integer);

    int original = Integer.parseInt(octal, 8);
    System.out.printf("Integer value of octal '%s' is %d.", octal, original);
  }
}

   
    
  








Related examples in the same category

1.Decodes Hex data into octects