java integer to binary string
int n = 1000;
String s = Integer.toBinaryString(n);
                                
                            java integer to binary string
int n = 1000;
String s = Integer.toBinaryString(n);
                                
                            java int to binary string
public static String makeBinaryString(int n) {
	StringBuilder sb = new StringBuilder();
	while (n > 0) {
    sb.append(n % 2);
		n /= 2;
	}
  	sb.reverse();  	
  	return sb.toString();
}
                                
                            integer to binary java
Integer.toString(100,8) // prints 144 --octal representation
Integer.toString(100,2) // prints 1100100 --binary representation
Integer.toString(100,16) //prints 64 --Hex representation
                                
                            how to get binary value in java
import java.util.*;
class Bin {
    //fields
    private Double number;
    //constructors
    public Bin(){
        number = 0.0;
    }
    public Bin(Double num){
        number = num;
    }
    //methods
    public ArrayList<String> reverseArrayList(ArrayList<String> alist) {
        
        ArrayList<String> array = new ArrayList<String>();
        int x = 0;
        int i = alist.size() - 1;
        while(x < alist.size()){
            array.add(alist.get(i));
            i -= 1;
            x += 1;
        }
        return array;
    }
	//getter methods
    public ArrayList<String> getBinVal(){
        ArrayList<String> binaryVal = new ArrayList<String>();
        ArrayList<String> array = new ArrayList<String>();
        Double num = number;
        Double sol1, check; 
        while( num > 0 ) {
            sol1 = num/2;
            check = sol1 - Math.floor(sol1);
            if(check > 0) {
                binaryVal.add("1");
                num = sol1 - 0.5;
            }
            else {
                binaryVal.add("0");
                num = sol1;
            }
        }
        while(binaryVal.size() < 4) {
            binaryVal.add("0");
        }
        array = reverseArrayList(binaryVal);
        return array;
    }
}
class MainClass {
    
    public static void main(String[] args) {
		
      	//add the number in as a command line argument
        Double num = Double.valueOf(args[0]);
		
      	//create an instance of Bin
        Bin value = new Bin(num);
		
      	//print the binary value
        System.out.println(value.getBinVal());
    }
}
                                
                            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