如何在jTextArea中显示中文字符

时间:2014-07-14 08:16:23

标签: java swing fonts jtextarea chinese-locale

我在一个框架中有一个JTexArea,我想显示中文字符。我的应用程序显示其他语言,如俄语,西班牙语......但我有中文问题。 Jlabels,Jbuttons和其他组件在中文中完美运行,但在我的texArea中,我只得到正方形

我的JTextArea:

textArea = new JTextArea();
textArea.setAutoscrolls(false);
textArea.setFont(new Font("Tahoma", textArea.getFont().getStyle(), 11)); 
scrollPane.setViewportView(textArea);

我附加文字:

Application.textArea.append(Messages.getString("myKey1") +"\n");

任何想法?感谢。

0 个答案:

没有答案