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 :
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 :
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.
How to do base conversion using library method in Java?
Reviewed by Rohit Agarwal
on
11/19/2016
Rating:

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.