I was wondering if it is possible to enter in binary numbers and have them translated back into text. For example I would enter "01101000 01100101 01101100 01101100 01101111" and it would covert it into the word "hello".
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
See the answer to this question: binary-to-text-in-java. |
|||
|
|
|
Theres three steps here - turning the binary set into an integer, and then the integer into a character, then concatenate to the string you're building Luckily parseInt takes a
|
||||
|
|