java 如何填充多个 JTextFields 从 .txt 文件读取数据
我必须从 .txt 文件读取一些数据。每行包含一个字符串。 每个字符串都必须显示在特定的 JTextField 中。 我该如何解决这个问题? 谢谢
I have to read some data from a .txt file. Each row contains a string.
Each string has to be displayed in a specific JTextField.
How can i solve the problem?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照 Java 教程 | 中的说明逐行读取文件。读取、写入和创建文件。
调用
setText
设置特定 JTextField 中的文本。例如Read the file line by line as described in the Java Tutorial | Reading, Writing, and Creating Files.
Call
setText
to set the text in a specific JTextField. e.g.