2019-05-09 19:32:54 +08:00
|
|
|
package Conversions;
|
|
|
|
|
2017-12-09 15:58:43 +08:00
|
|
|
public class HexaDecimalToBinary {
|
2019-02-05 13:03:37 +08:00
|
|
|
|
2017-08-10 02:59:02 +08:00
|
|
|
private final int LONG_BITS = 8;
|
|
|
|
|
|
|
|
public void convert(String numHex) {
|
2019-02-05 13:03:37 +08:00
|
|
|
// String a HexaDecimal:
|
2017-08-10 02:59:02 +08:00
|
|
|
int conHex = Integer.parseInt(numHex, 16);
|
2019-02-05 13:03:37 +08:00
|
|
|
// Hex a Binary:
|
2017-08-10 02:59:02 +08:00
|
|
|
String binary = Integer.toBinaryString(conHex);
|
2019-02-05 13:03:37 +08:00
|
|
|
// Presentation:
|
2017-08-10 02:59:02 +08:00
|
|
|
System.out.println(numHex + " = " + completeDigits(binary));
|
|
|
|
}
|
|
|
|
|
|
|
|
public String completeDigits(String binNum) {
|
|
|
|
for (int i = binNum.length(); i < LONG_BITS; i++) {
|
|
|
|
binNum = "0" + binNum;
|
|
|
|
}
|
|
|
|
return binNum;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
|
|
|
//Testing Numbers:
|
|
|
|
String[] hexNums = {"1", "A1", "ef", "BA", "AA", "BB",
|
2019-02-05 13:03:37 +08:00
|
|
|
"19", "01", "02", "03", "04"};
|
2017-12-09 15:58:43 +08:00
|
|
|
HexaDecimalToBinary objConvert = new HexaDecimalToBinary();
|
2017-08-10 02:59:02 +08:00
|
|
|
|
|
|
|
for (String num : hexNums) {
|
|
|
|
objConvert.convert(num);
|
|
|
|
}
|
|
|
|
}
|
2017-12-09 15:58:43 +08:00
|
|
|
}
|