Konwertowanie int na binarną reprezentację w języku Java?

168

Jaki byłby najlepszy (najlepiej najprostszy) sposób konwersji int na binarną reprezentację ciągu w Javie?

Na przykład, powiedzmy, że int to 156. Binarna reprezentacja tego łańcucha to „10011100”.

Tyler Treat
źródło

Odpowiedzi:

330
Integer.toBinaryString(int i)
Jacek
źródło
To wygodne! Czy istnieje podobna metoda na długie okresy?
Tyler Treat
46
@ ttreat31: Nie mam na myśli, żeby zabrzmiało to złośliwie, ale naprawdę powinieneś mieć dokumentację (w tym przypadku JavaDoc) pod ręką, kiedy programujesz. Nie powinieneś pytać: czy ich metoda jest podobna przez długi czas; powinno zająć Ci to sprawdzenie, niż wpisanie komentarza.
Lawrence Dol
5
@Jack czy istnieje sposób, aby uzyskać ciąg binarny w stałej liczbie bitów, np. Dziesiętne 8 w 8-bitowych binarnych, które 00001000
Kasun Siyambalapitiya
26
public static string intToBinary(int n)
{
    string s = "";
    while (n > 0)
    {
        s =  ( (n % 2 ) == 0 ? "0" : "1") +s;
        n = n / 2;
    }
    return s;
}
Ariel Badilla
źródło
20

Jeszcze jeden sposób - Używając java.lang.Integer , możesz uzyskać reprezentację ciągu pierwszego argumentu iw radix (Octal - 8, Hex - 16, Binary - 2)określonym przez drugi argument.

 Integer.toString(i, radix)

Przykład_

private void getStrtingRadix() {
        // TODO Auto-generated method stub
         /* returns the string representation of the 
          unsigned integer in concern radix*/
         System.out.println("Binary eqivalent of 100 = " + Integer.toString(100, 2));
         System.out.println("Octal eqivalent of 100 = " + Integer.toString(100, 8));
         System.out.println("Decimal eqivalent of 100 = " + Integer.toString(100, 10));
         System.out.println("Hexadecimal eqivalent of 100 = " + Integer.toString(100, 16));
    }

Wynik_

Binary eqivalent of 100 = 1100100
Octal eqivalent of 100 = 144
Decimal eqivalent of 100 = 100
Hexadecimal eqivalent of 100 = 64
Rupesh Yadav
źródło
5
public class Main  {

   public static String toBinary(int n, int l ) throws Exception {
       double pow =  Math.pow(2, l);
       StringBuilder binary = new StringBuilder();
        if ( pow < n ) {
            throw new Exception("The length must be big from number ");
        }
       int shift = l- 1;
       for (; shift >= 0 ; shift--) {
           int bit = (n >> shift) & 1;
           if (bit == 1) {
               binary.append("1");
           } else {
               binary.append("0");
           }
       }
       return binary.toString();
   }

    public static void main(String[] args) throws Exception {
        System.out.println(" binary = " + toBinary(7, 4));
        System.out.println(" binary = " + Integer.toString(7,2));
    }
}
Artavazd Manukyan
źródło
Wyniki binarne = 0111 binarne = 111
Artavazd Manukyan
1
String hexString = String.format ("% 2s", Integer.toHexString (h)). Replace ('', '0');
Artavazd Manukyan
5

To jest coś, co napisałem kilka minut temu, po prostu wygłupiając się. Mam nadzieję, że to pomoże!

public class Main {

public static void main(String[] args) {

    ArrayList<Integer> powers = new ArrayList<Integer>();
    ArrayList<Integer> binaryStore = new ArrayList<Integer>();

    powers.add(128);
    powers.add(64);
    powers.add(32);
    powers.add(16);
    powers.add(8);
    powers.add(4);
    powers.add(2);
    powers.add(1);

    Scanner sc = new Scanner(System.in);
    System.out.println("Welcome to Paden9000 binary converter. Please enter an integer you wish to convert: ");
    int input = sc.nextInt();
    int printableInput = input;

    for (int i : powers) {
        if (input < i) {
            binaryStore.add(0);     
        } else {
            input = input - i;
            binaryStore.add(1);             
        }           
    }

    String newString= binaryStore.toString();
    String finalOutput = newString.replace("[", "")
            .replace(" ", "")
            .replace("]", "")
            .replace(",", "");

    System.out.println("Integer value: " + printableInput + "\nBinary value: " + finalOutput);
    sc.close();
}   

}

AbbyPaden
źródło
5

Konwertuj liczbę całkowitą na binarną:

import java.util.Scanner;

public class IntegerToBinary {

    public static void main(String[] args) {

        Scanner input = new Scanner( System.in );

        System.out.println("Enter Integer: ");
        String integerString =input.nextLine();

        System.out.println("Binary Number: "+Integer.toBinaryString(Integer.parseInt(integerString)));
    }

}

Wynik:

Wpisz liczbę całkowitą:

10

Liczba binarna: 1010

Sidarth
źródło
Nadmierna promocja określonego produktu / zasobu (który usunąłem tutaj) może zostać odebrana przez społeczność jako spam . Zapoznaj się z Centrum pomocy , a zwłaszcza Jakiego zachowania oczekuje się od użytkowników? Ostatnia sekcja: Unikaj jawnej autopromocji . Możesz być także zainteresowany Jak reklamować się w Stack Overflow? .
Tunaki
4

Korzystanie z funkcji wbudowanej:

String binaryNum = Integer.toBinaryString(int num);

Jeśli nie chcesz używać wbudowanej funkcji do konwersji int na binarną, możesz również zrobić to:

import java.util.*;
public class IntToBinary {
    public static void main(String[] args) {
        Scanner d = new Scanner(System.in);
        int n;
        n = d.nextInt();
        StringBuilder sb = new StringBuilder();
        while(n > 0){
        int r = n%2;
        sb.append(r);
        n = n/2;
        }
        System.out.println(sb.reverse());        
    }
}
Rachit Srivastava
źródło
4

Najprostszym podejściem jest sprawdzenie, czy liczba jest nieparzysta. Jeśli tak, to z definicji najbardziej wysunięta na prawo liczba binarna to „1” (2 ^ 0). Po ustaleniu tego przesuwamy nieco liczbę w prawo i sprawdzamy tę samą wartość za pomocą rekursji.

@Test
public void shouldPrintBinary() {
    StringBuilder sb = new StringBuilder();
    convert(1234, sb);
}

private void convert(int n, StringBuilder sb) {

    if (n > 0) {
        sb.append(n % 2);
        convert(n >> 1, sb);
    } else {
        System.out.println(sb.reverse().toString());
    }
}
wild_nothing
źródło
1
Myślę, że jest to naprawdę elegancki sposób na zrobienie tego ręcznie, jeśli naprawdę nie chcesz używać wbudowanych metod.
praneetloke
4

oto moje metody, to trochę przekonuje, że liczba bajtów została naprawiona

private void printByte(int value) {
String currentBinary = Integer.toBinaryString(256 + value);
System.out.println(currentBinary.substring(currentBinary.length() - 8));
}

public int binaryToInteger(String binary) {
char[] numbers = binary.toCharArray();
int result = 0;
for(int i=numbers.length - 1; i>=0; i--)
  if(numbers[i]=='1')
    result += Math.pow(2, (numbers.length-i - 1));
return result;
}
Aleksey Timoshchenko
źródło
3

Korzystanie z przesunięcia bitowego jest trochę szybsze ...

public static String convertDecimalToBinary(int N) {

    StringBuilder binary = new StringBuilder(32);

    while (N > 0 ) {
        binary.append( N % 2 );
        N >>= 1;
     }

    return binary.reverse().toString();

}
Eddie B.
źródło
2

Można to wyrazić w pseudokodzie jako:

while(n > 0):
    remainder = n%2;
    n = n/2;
    Insert remainder to front of a list or push onto a stack

Print list or stack
amoljdv06
źródło
1

Naprawdę powinieneś użyć Integer.toBinaryString () (jak pokazano powyżej), ale jeśli z jakiegoś powodu chcesz własnego:

// Like Integer.toBinaryString, but always returns 32 chars
public static String asBitString(int value) {
  final char[] buf = new char[32];
  for (int i = 31; i >= 0; i--) {
    buf[31 - i] = ((1 << i) & value) == 0 ? '0' : '1';
  }
  return new String(buf);
}
przemyślenie
źródło
0

Powinno to być dość proste w przypadku czegoś takiego:

public static String toBinary(int number){
    StringBuilder sb = new StringBuilder();

    if(number == 0)
        return "0";
    while(number>=1){
        sb.append(number%2);
        number = number / 2;
    }

    return sb.reverse().toString();

}
Sandeep Saini
źródło
0

Możesz również użyć pętli while, aby przekonwertować int na binarny. Lubię to,

import java.util.Scanner;

public class IntegerToBinary
{
   public static void main(String[] args)
   {
      int num;
      String str = "";
      Scanner sc = new Scanner(System.in);
      System.out.print("Please enter the a number : ");
      num = sc.nextInt();
      while(num > 0)
      {
         int y = num % 2;
         str = y + str;
         num = num / 2;
      }
      System.out.println("The binary conversion is : " + str);
      sc.close();
   }
}

Źródło i odniesienie - przekonwertuj int na binarny w przykładzie java .

siedmiodniowa żałoba
źródło
0
public class BinaryConverter {

    public static String binaryConverter(int number) {
        String binary = "";
        if (number == 1){
            binary = "1";
            System.out.print(binary);
            return binary;
        }
        if (number == 0){
            binary = "0";
            System.out.print(binary);
            return binary;
        }
        if (number > 1) {
            String i = Integer.toString(number % 2);

            binary = binary + i;
            binaryConverter(number/2);
        }
        System.out.print(binary);
        return binary;
    }
}
Ahmed Saka
źródło