OpenJDK 与 Sun JDK 1.6 上的字体 [Linux 平台]
我注意到 OpenJDK 与 Sun JDK 上的字体看起来不同。 Java JDK 附带了更好的字体集。有谁知道“字体”是什么包以及如何在 OpenJDK 安装中使用它?
谢谢
I noticed that the Fonts on OpenJDK vs. Sun JDK look different. Java JDK has a better font set that accompanies it. Does anyone know what package the 'font' is and how I can have it on OpenJDK installations?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是渲染基于 Swing 的 GUI 时与抗锯齿相关的问题。 Oracle JDK 默认启用抗锯齿功能,但由于某些原因(我从来不想调查),OpenJDK 中未启用抗锯齿功能。
您可以通过将此指令添加到您的
~/.bash_profile
来启用当前 OpenJDK 安装的抗锯齿支持:祝您好运!
It's an issue related to anti-aliasing when rendering Swing based GUIs. Anti-aliasing comes enabled by default with Oracle JDK, and for some reasons (that I never wanted to investigate) anti-aliasing is not enabled in OpenJDK.
You can enable anti-aliasing support with your current OpenJDK installation by adding this instruction to your
~/.bash_profile
:Good luck!