How to enable font anti-aliasing in a Java Swing app
If you have access to the source, you can do this in the main method: // enable anti-aliasing System.setProperty("awt.useSystemAAFontSettings","on"); System.setProperty("swing.aatext", "true"); ...