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

link|improve this question

You probably mean "Sun JDK" (or "Oracle JDK") instead of "Java JDK". – Bruno Sep 27 '10 at 17:07
feedback

1 Answer

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:

export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on"

Good luck!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.