如何在netbeans7.0中的jtext区域中显示.txt文件
我在我正在处理的表单上创建了文本区域,但不知道如何在netbeans7.0中的jtextArea中显示文本文件的内容
I created the textarea on the form on which I am working but don't know how to display the contents of text file in jtextArea in netbeans7.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我之前在另一个问题上看到了这个建议:使用read() 方法。
I saw this suggestion on another question earlier: Use the read() method of JTextComponent.
这与 Netbeans 7.0 无关。在 Java 中,这是将文本设置到 JTextArea 的方法:
This has nothing to do with Netbeans 7.0. In Java this is how you set text to a
JTextArea
:如果您有 JTextArea,只需调用
setText(String yourText)
即可填充它。另请参阅教程: http://download.oracle.com/javase/教程/uiswing/components/textarea.html
If you have a JTextArea, just call
setText(String yourText)
to populate it.Also see the tutorial: http://download.oracle.com/javase/tutorial/uiswing/components/textarea.html