zoukankan      html  css  js  c++  java
  • Binary, Octal, and Hexadecimal Conversions in Java

    Convert from Binary, Octal or Hex to Decimal using Integer.parseInt(String input, int radix)

    Use Integer.parseInt(String input, int radix) to convert from any type of number to an Integer.

    String binaryNumber = "10101";
    int decimal1 = Integer.parseInt(binaryNumber, 2);
    
    System.out.println(binaryNumber + " in Base 10 : " + decimal1);
    
    String octalNumber = "456";
    int decimal2 = Integer.parseInt(octalNumber, 8);
    
    System.out.println(octalNumber + " in Base 10 : " + decimal2);
    
    String hexNumber = "ABCD";
    int decimal3 = Integer.parseInt(hexNumber, 16);
    
    System.out.println(hexNumber + " in Base 10 : " + decimal3);
    
    Output:
    
    10101 in Base 10 : 21
    456 in Base 10 : 302
    ABCD in Base 10 : 43981
    
     

    Convert from Decimal to Binary, Octal or Hex using Integer.toString(int input, int radix)

    Use Integer.toString(int input, int radix) to convert from an Integer to any type of base number.

    Integer decimal1 = 21;
    String binaryNumber = Integer.toString(decimal1, 2);
    
    System.out.println(decimal1 + " in Base 2 : " + binaryNumber);
    
    Integer decimal2 = 302;
    String octalNumber = Integer.toString(decimal2, 8);
    
    System.out.println(decimal2 + " in Base 8 : " + octalNumber);
    
    Integer decimal3 = 43981;
    String hexNumber = Integer.toString(decimal3, 16);
    
    System.out.println(decimal2 + " in Base 16 : " + hexNumber);
    
    Output:
    
    21 in Base 2 : 10101
    302 in Base 8 : 456
    43981 in Base 16 : abcd
    
     

    Convert from Decimal to Binary, Octal or Hex using Integer.toXXXString(int)

    Integer class does provide lots of unitily methods to be consumed directly. Check out them in java doc.

    Integer decimal1 = 21;
    System.out.println(decimal1 + " in Base 2 : " + Integer.toBinaryString(decimal1));
    
    Integer decimal2 = 302;
    System.out.println(decimal2 + " in Base 8 : " + Integer.toOctalString(decimal2));
    
    Integer decimal3 = 43981;
    System.out.println(decimal3 + " in Base 16 : " + Integer.toHexString(decimal3));
    
    Output:
    
    21 in Base 2 : 10101
    302 in Base 8 : 456
    43981 in Base 16 : abcd
    
  • 相关阅读:
    java security
    abstract class和interface的区别
    Hibernate是如何延迟加载的
    hibernate 延迟加载
    hibernate 的缓存机制
    Apache POI组件操作Excel,制作报表(四)
    Apache POI组件操作Excel,制作报表(三)
    Apache POI组件操作Excel,制作报表(二)
    Apache POI组件操作Excel,制作报表(一)
    POI中HSSF和XSSF操作Excel
  • 原文地址:https://www.cnblogs.com/skyball/p/5467470.html
Copyright © 2011-2022 走看看