Java 小程序无法显示’ 随机地
我的 Java 小程序无法在 JTextPanel
面板上随机显示 HTML 编码的“(’
)”。 这是 JRE 特有的错误吗? 它在我的测试电脑上工作正常,但客户遇到了编码显示在 GUI 上的问题。
My Java applet fails to show HTML-encoded ’ (’
) on JTextPanel
panel randomly. Is this a JRE-specific bug? It works OK with my test pc but the customer has a problem that encoding is shown on GUI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出现这种情况的原因可能是 Java 源文件的文本编码。 最好的解决方案是确保在源文件中使用 UTF-8。 我最近遇到了与英镑符号类似的问题,回答
This can occur due to the text encoding of your Java source file. The best solution is to ensure you use UTF-8 in the source files. A similar problem recently occurred to me with the pound symbol, answered here.