I wrote this code to convert binary code to text.
public static void main(String args[]) throws IOException{ BufferedReader b = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter a binary value:"); String h = b.readLine(); int k = Integer.parseInt(h,2); String out = new Character((char)k).toString(); System.out.println("string: " + out); } }
and look at the exit!
Enter a binary value: 0011000100110000 string: ?
what problem?
source share