Reputation: 44240
For anyone that has developed a customer-facing Java Swing application that supports multiple languages, which font(s) did you find best displayed the characters for all languages?
Upvotes: 9
Views: 6190
Reputation: 47081
Why not create your own?
You can create your own fonts with tools like the Icomoon App. This app allows you to do each of the following :
I used the Icomoon App to create the Emoji emoticon font. I also use it for creating custom icon fonts on a per project basis, but it can also be used to create custom fonts that support exactly those languages you need to support.
Upvotes: 1
Reputation: 8185
You should also read Loading Font Configuration Files on font configuration with Java 6. This file allows you to specify which font can be used to represent glyphs from a specific locale. I had to use and configure it once, and it really helped me.
Upvotes: 3