Font rendering in gedit is smooth, but not smooth in NetBeans

You should be able to improve the font rendering, but it will never be like the one in Gedit. Usually all java applications using Swing have that weird rendering. If you use Eclipse, for example, the font rendering should be correct.

Font rendering can be changed in /etc/netbeans.conf:

sudo gedit /etc/netbeans.conf

and at the end of netbeans_default_options (between the quotation marks) add this:

-J-Dswing.aatext=true -J-Dawt.useSystemAAFontSettings=<OPTION>

where option can be "on", "gasp" or "lcd". You can get the full list here.

Try all those and see which one gives you best look. Hope it helps.

NOTE:

i don't have Netbeans installed right now to test, but depending on the way you have installed it netbeans.conf can be located somewhere else.


Fixed.

See this and this.

TL;DR: just add -J-Dawt.useSystemAAFontSettings=on -J-Dswing.aatext=true to netbeans_default_options in the netbeans.conf file.

(netbeans.conf is at <installdir>/etc/netbeans.conf)

Of course, restart NetBeans.

See the result screenshot below. The Netbeans window on the extreme right is the onc after the above options are applied. Still not as good as gedit, but better than before.

enter image description here