Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to convert text to binary code in Java

1 Answer

0 votes
public class Main {
    public static void main(String[] args) {
        System.out.println(text2bin("Java Programming"));
    }

    public static String text2bin(String txt) {
        StringBuilder bin = new StringBuilder();
        
        for (char ch : txt.toCharArray()) {
            String binary = Integer.toBinaryString(ch);
            bin.append(String.format("%8s", binary).replace(' ', '0')).append(" ");
        }
        
        return bin.toString();
    }
}



/*
run:

01001010 01100001 01110110 01100001 00100000 01010000 01110010 01101111 01100111 01110010 01100001 01101101 01101101 01101001 01101110 01100111 

*/

 



answered Nov 17, 2024 by avibootz

Related questions

1 answer 74 views
1 answer 78 views
1 answer 71 views
1 answer 76 views
1 answer 76 views
1 answer 68 views
...