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
Asked
Active
Viewed 1,054 times
1
-
Does the linked question give you absolutely ***no*** hint? What is the font used by the label in your GUI? – Andrew Thompson Nov 30 '16 at 07:29
-
@AndrewThompson Thank you. I thought the entire frame's font should be changed. Got it done now. – Barath Sankar Nov 30 '16 at 08:10
-
2Glad you got it sorted. :) Now you might answer the question in the (non-comment) text area below, or simply delete the question. – Andrew Thompson Nov 30 '16 at 08:29
2 Answers
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