I have a binary code (say "0100001001000011") and I am going to convert the value to the corresponding characters.
- scan the binary code from left to right, eight bits per unit. (Then you can get two binary string, 01000010 and 01000011)
Can anyone help me to code no.1 in Java?