binary string to int java
int decimal=Integer.parseInt(binaryString,2);
binary string to int java
int decimal=Integer.parseInt(binaryString,2);
Java convert binary to decimal
import java.util.Scanner;
public class BinaryToDecimalDemo
{
public static void main(String[] args)
{
int number, decimal = 0, a = 0;
Scanner sc = new Scanner(System.in);
System.out.println("Please enter binary number: ");
String strBinary = sc.nextLine();
number = Integer.parseInt(strBinary);
while(number != 0){
decimal += (number % 10) * Math.pow(2, a);
number = number / 10;
a++;
}
System.out.println("Decimal number: " + decimal);
sc.close();
}
}
binary to decimal in java program
public class Details {
public int BinaryToDecimal(int binaryNumber){
int decimal = 0;
int p = 0;
while(true){
if(binaryNumber == 0){
break;
} else {
int temp = binaryNumber%10;
decimal += temp*Math.pow(2, p);
binaryNumber = binaryNumber/10;
p++;
}
}
return decimal;
}
public static void main(String args[]){
Details obj = new Details();
System.out.println("110 --> "+obj.BinaryToDecimal(110));
System.out.println("1101 --> "+obj.BinaryToDecimal(1101));
System.out.println("100 --> "+obj.BinaryToDecimal(100));
System.out.println("110111 --> "+obj.BinaryToDecimal(110111));
}
}
Binary to hexadecimal conversion with java
public static int binaryToHexadecimal(String binary) {
// Declaring Hexadecimal variable
String hex = "";
/**
* Converting the Binary value to Hexadecimal Equivalent
* First convert the Binary to Decimal Equivalent
* Then to Hexadecimal Equivalent
*/
// Converting Binary to decimal
int number = Integer.parseInt( binary, 2 );
// Converting Decimal Equivalent to Hexadecimal
hex = Integer.toHexString( number );
// Returning the Hexadecimal value
return hex;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us