1

By this method, I am able to use it in Netbeans but not in the Swing GUI components, like a text box How to use Tamil in NetBeans 8.0.2

enter image description here

Community
  • 1
  • 1
Barath Sankar
  • 383
  • 4
  • 15

2 Answers2

0

The font of the respective Text field/ button or any element is to be changed to the respective font (i.e) Arial Unicode MS in this case.

It is the same as enabling other languages in the IDE. The same procedure of changing font is done to the corresponding element.

Barath Sankar
  • 383
  • 4
  • 15
0

Use fonts that supports the required language.

For Tamil language, you can use Fonts like Latha.

You can install More Tamil Fonts and use that in Java

Example,

Font latha = new Font("Latha", Font.PLAIN, 14);
JLabel label = new JLabel("தமிழ்");
label.setFont(latha);
Mustafa Poya
  • 2,615
  • 5
  • 22
  • 36
JEYANT
  • 1
  • 1