我在我正在工作的表单上创建了textarea但是不知道如何在netbeans7.0中的jtextArea中显示文本文件的内容
答案 0 :(得分:3)
我之前在another question看到了这个建议:使用JTextComponent的read()方法。
textArea.read(new FileReader(textFile), "here's a description of the file");
答案 1 :(得分:0)
这与Netbeans 7.0无关。在Java中,您可以将文本设置为JTextArea
:
jTextAreaInstance.setText("myText");
答案 2 :(得分:0)
如果你有一个JTextArea,只需调用setText(String yourText)
来填充它。
另请参阅教程:http://download.oracle.com/javase/tutorial/uiswing/components/textarea.html