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 |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Convert Hexadecimal into Binary and Long View All Comments
Post your Comment