In this section, you will learn to convert the hexadecimal data into the binary and long format.
Convert Hexadecimal into Binary and Long
In this section, you will learn to convert the hexadecimal data into the binary and long format. The java.lang package provides the functionality to convert a hexadecimal to binary and long type data.
Code Description:
This program helps you in converting the hexadecimal data into the binary and long. At run time this program asks for a a hexadecimal data and it then converts it into an integer type data. The toBinaryString() method converts an integer data into binary data. And the parseLong() method converts the hexadecimal data into a long type data.
Here is the code of this program:
import java.io.*;
|
Output of this program.
C:\vinod\convert>javac HexadecimalToBinaryAndLong.java C:\vinod\convert>java HexadecimalToBinaryAndLong Enter the hexa value! 14 This is Binary: 1110 This is long:=20 |