读取特殊字符时遇到问题 (Java)

发布于 2024-10-12 13:59:31 字数 317 浏览 2 评论 0原文

我正在制作一个使用特殊加密的聊天客户端。它在从输入缓冲区读取诸如 «、f、̕ 之类的字母时遇到问题。

我将它们读入字节数组,并尝试使用

Connection.getInputStream().read();

And 还使用

BufferedReader myInput = new BufferedReader(
    new InputStreamReader(Connection.getInputStream()));

但似乎存在问题,因为它将它们显示为方框。

I'm making a chat client that uses special encryption. It has a problem reading letters like «, ƒ, ̕ from the input buffer.

Im reading them into a byte array and I tried using

Connection.getInputStream().read();

And also using

BufferedReader myInput = new BufferedReader(
    new InputStreamReader(Connection.getInputStream()));

But there appears to be a problem as it displays them as square boxes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

吻泪 2024-10-19 13:59:31

您必须确保您的 InputStreamReader 使用相同的字符集将字节解码为字符,而不是发送者将字符编码为字节所使用的字符集。查看InputStreamReader的其他构造函数。

您还必须确保用于显示字符的字体支持特殊字符。

You have to make sure that your InputStreamReader uses the same charset to decode the bytes into chars than the one used by the sender to encode chars into bytes. Look at the other constructors of InputStreamReader.

You must also make sure that the font you're using to display the chars supports your special characters.

混吃等死 2024-10-19 13:59:31

通过 new InputStreamReader(..,"utf-8") 或任何您的输入在流上设置正确的编码。

Set the correct encoding on the stream through new InputStreamReader(..,"utf-8") or whatever your input is.

往事风中埋 2024-10-19 13:59:31

将字节数组转换为指定字符集的字符串。

String data = new String(byte[], "UTF-8");

确保显示字体支持 UTF-8 或您指定的编码字符集。

Conver byte array to String specifying Character set.

String data = new String(byte[], "UTF-8");

make sure that displaying font support UTF-8 or your specified encoding charset.

不可一世的女人 2024-10-19 13:59:31

您可以尝试使用 DataInputStream< /a> 和 readChar() 方法。

  DataInputStream in = new DataInputStream(myinput);
  //where muinput is your BufferedInputStream.

  char c = in.readChar();

应该做你想做的事。

You can try using a DataInputStream and the readChar() method.

  DataInputStream in = new DataInputStream(myinput);
  //where muinput is your BufferedInputStream.

  char c = in.readChar();

should do what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文