当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Binary转Hexadecimal用法及代码示例


顾名思义,十六进制数字系统由 16 个实体组成。这 16 个实体由 10 位数字组成,0-9 也代表十六进制系统的前 10 个数字。剩下的 6 个数字,我们用 A 到 F 的英文字母来表示数字 10 到 15。需要注意的是,十六进制系统中最小的数字是 0,最大的数字是 15,用 F 表示。十六进制数字可以通过将 4 位数字组合成十六进制数的单个字符,从二进制数导出。

例:

Input: 11011111
Output: DF
 
Input:10001101
Output:8D
  • 在上面的示例中,二进制数 10001101 可以分解为 4 位的块,例如 1000 和 1101,它们充当对应的十六进制数的 2 个字符。
  • 生成的十六进制数将是 8D,其中每个字符都是通过计算其在十进制系统中的对应值来确定的,如果在这种情况下是 two-digit 数字,则将其替换为字母表 D 表示 13。十六进制系统也称为基数-16。

对于二进制到十六进制的转换,我们将使用以下两种方法:

  1. 使用 toHexString() 内置 java 方法
  2. 反复取余数并将转换后的十进制数除以 16

方法一:

使用这种方法,我们首先将二进制数转换为存储为整数的十进制数。然后,我们简单地使用java的toHexString()方法来生成想要的输出字符串。



用法:

public static String toHexString(int num)

参数:

  • num - 此参数指定要转换的数字
    为十六进制字符串。数据类型是 int。

返回值:该函数将 int 参数的字符串表示形式返回为以 16 为底的无符号整数。

算法:

  1. 将二进制数转换为十进制数。
  2. 要将二进制数转换为十进制数,首先,通过除以 10 得到余数来提取每个数字。
  3. 接下来,将此数字乘以 2 的递增幂。
  4. 继续将原始二进制数除以 10,以消除每次迭代中的最后一位。
  5. 得到十进制数后,只需使用 toHexString() 方法即可获得所需的输出。

例:

Java


// Java program to convert binary to hexadecimal
class GFG {
    // method to convert binary to decimal
    int binaryToDecimal(long binary)
    {
        // variable to store the converted
        // binary number
        int decimalNumber = 0, i = 0;
        // loop to extract the digits of the binary
        while (binary > 0) {
            // extracting the digits by getting
            // remainder on dividing by 10 and
            // multiplying by increasing integral
            // powers of 2
            decimalNumber
                += Math.pow(2, i++) * (binary % 10);
            // updating the binary by eliminating
            // the last digit on division by 10
            binary /= 10;
        }
        // returning the decimal number
        return decimalNumber;
    }
    // method to convert decimal to hexadecimal
    String decimalToHex(long binary)
    {
        // variable to store the output of the
        // binaryToDecimal() method
        int decimalNumber = binaryToDecimal(binary);
        // converting the integer to the desired
        // hex string using toHexString() method
        String hexNumber
            = Integer.toHexString(decimalNumber);
        // converting the string to uppercase
        // for uniformity
        hexNumber = hexNumber.toUpperCase();
        // returning the final hex string
        return hexNumber;
    }
    // Driver Code
    public static void main(String[] args)
    {
        // instantiating the class
        GFG ob = new GFG();
        long num = 10011110;
       
        // calling and printing the output
        // of decimalToHex() method
        System.out.println("Inputted number:" +num);
        System.out.println(ob.decimalToHex(10011110));
    }
}
输出
Inputted number:10011110
9E

方法二:

  • 在第二种方法下,我们再次首先将二进制数转换为十进制数。
  • 然后我们不断除以这个十进制数的余数,得到原始二进制数中每组 4 位的单个字符。

算法:

  1. 使用上述算法中的步骤 2-4 将二进制转换为十进制。
  2. 接下来,以十进制数为0的终止条件和每次迭代的十进制数除以16的更新条件运行一个while循环。
  3. 在每次迭代中,通过将数字除以 16 得到余数。
  4. 构成一个新的字符串并继续添加除以 16 的剩余字符。
  5. 如果余数大于或等于 10,则根据余数将其替换为字母 A-F。

例:

Java


// Java program to convert binary to hexadecimal
class GFG {
    // method to convert binary to decimal
    int binaryToDecimal(long binary)
    {
        // variable to store the converted binary
        int decimalNumber = 0, i = 0;
        // loop to extract digits of the binary
        while (binary > 0) {
            // extracting each digit of the binary
            // by getting the remainder of division
            // by 10 and multiplying it by
            // increasing integral powers of 2
            decimalNumber
                += Math.pow(2, i++) * (binary % 10);
            // update condition of dividing the
            // binary by 10
            binary /= 10;
        }
        // returning the decimal
        return decimalNumber;
    }
    // method to convert decimal to hex
    String decimalToHex(long binary)
    {
        // variable to store the output of
        // binaryToDecimal() method
        int decimalNumber = binaryToDecimal(binary);
        // character array to represent double
        // digit remainders
        char arr[] = { 'A', 'B', 'C', 'D', 'E', 'F' };
        // variable to store the remainder on
        // division by 16
        int remainder, i = 0;
        // declaring the string that stores the
        // final hex string
        String hexNumber = "";
        // loop to convert decimal to hex
        while (decimalNumber != 0) {
            // calculating the remainder of decimal
            // by dividing by 16
            remainder = decimalNumber % 16;
            // checking if the remainder is >= 10
            if (remainder >= 10)
               
                // replacing with the corresponding
                // alphabet from the array
                hexNumber = arr[remainder - 10] + hexNumber;
           
            else
               
                hexNumber = remainder + hexNumber;
            // update condition of dividing the
            // number by 16
            decimalNumber /= 16;
        }
        // returning the hex string
        return hexNumber;
    }
    // Driver Code
    public static void main(String[] args)
    {
        // instantiating the class
        GFG ob = new GFG();
        long num =11000011;
       
        // printing and calling the
        // decimalToHex() method
        System.out.println("Input:"+num);
        System.out.println("Output:" +ob.decimalToHex(num));
    }
}
输出
Input:11000011
Output:C3




相关用法


注:本文由纯净天空筛选整理自ag01harshit大神的英文原创作品 Java Program to Convert Binary to Hexadecimal。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。