I make a chat client that uses special encryption. He has a problem reading letters like ", ƒ, ̕" from the input buffer.
I read them into an array of bytes and I tried to use
Connection.getInputStream().read();
And also using
BufferedReader myInput = new BufferedReader(
new InputStreamReader(Connection.getInputStream()));
But there is a problem because it displays them as square.
source
share