less than 1 minute read

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");

Alternatively (and if you do not have access to the source, or if you find this easier) you can simply pass the system properties above to the JVM by adding these options to the command line:

-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true

Tags: ,

Updated: