How to do base conversion using library method in Java?



Problem Description :


Write a program in Java that converts the Decimal number to Binary, Octal and Hexadecimal numbers using a library function.

Concept :


We are using following methods of Integer class.
  • public static String toBinaryString(int decimal); 
  • public static String toOctalString(int decimal);
  • public static String toHexString(int decimal);


Java Program :


package com.javamultiplex.baseconversion;
import java.util.Scanner;
/**
*
* @author Rohit Agarwal
* @category Base Conversion
* @problem Convert Decimal to Binary, Octal and Hexadecimal
*/
public class DecimalToOtherBaseUsingIntegerClass {
public static void main(String[] args) {
Scanner input = null;
try {
input = new Scanner(System.in);
System.out.println("Enter decimal number : ");
String decimal = input.next();
if (isDecimalNumber(decimal)) {
int dec = Integer.parseInt(decimal);
// Decimal to Binary conversion
String binary = Integer.toBinaryString(dec);
System.out.println("Binary number : " + binary);
// Decimal to Octal conversion
String octal = Integer.toOctalString(dec);
System.out.println("Octal number : " + octal);
// Decimal to Hexadecimal conversion
String hexadecimal = Integer.toHexString(dec);
System.out.println("Hexadecimal number : " + hexadecimal);
} else {
System.out.println("Please enter valid decimal number.");
}
} finally {
if (input != null) {
input.close();
}
}
}
private static boolean isDecimalNumber(String number) {
// Regular expression that matches String containing only digits [0-9].
String pattern = "^[0-9]+$";
boolean result = false;
if (number.matches(pattern)) {
result = true;
}
return result;
}
}


Output :


Output of Java program that converts decimal number to octal, binary and hexadecimal number using library functions.
Output - How to do base conversion using library function in Java?

References :



Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.

Tags : Conversion problems, Decimal to Binary, Decimal to Octal, Decimal to Hexadecimal, Solution in Java, String, Integer, if else statement.

About Author:

I am simple guy with lot of ambitions. My main motive is to share whatever knowledge I have related to programming. With me you can easily learn how to solve any programming problem in Java.You can connect with me on social networking sites also.


Let's Get Connected: Linkedin | Facebook |

How to do base conversion using library method in Java? How to do base conversion using library method in Java? Reviewed by Rohit Agarwal on 11/19/2016 Rating: 5

No comments:

Please provide your valuable comments. If you have any suggestion please share with me I will work on it and if you have any question or doubt please ask, don't hesitate. I am your friend, i will clarify all your doubts.

Powered by Blogger.