如何在netbeans7.0中的jtext区域中显示.txt文件

发布于 2024-11-14 15:46:06 字数 65 浏览 3 评论 0原文

我在我正在处理的表单上创建了文本区域,但不知道如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

仄言 2024-11-21 15:46:06

我之前在另一个问题上看到了这个建议:使用read() 方法。

    textArea.read(new FileReader(textFile), "here's a description of the file");

I saw this suggestion on another question earlier: Use the read() method of JTextComponent.

    textArea.read(new FileReader(textFile), "here's a description of the file");
沐歌 2024-11-21 15:46:06

这与 Netbeans 7.0 无关。在 Java 中,这是将文本设置到 JTextArea 的方法:

jTextAreaInstance.setText("myText");

This has nothing to do with Netbeans 7.0. In Java this is how you set text to a JTextArea:

jTextAreaInstance.setText("myText");
感情废物 2024-11-21 15:46:06

如果您有 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文