Java:如何立即将文本字段中的更改发送到文件?
用Java做以下事情很难吗?首先,我需要生成一个带有文本字段的窗口(没有按钮,什么都没有,只有一个文本字段)。然后,当用户在文本字段中键入符号时,程序会立即将有关此符号的信息存储在文件中(键入哪个符号以及何时键入)。就是这样。
Is it hard to do the following with the Java? First I need to generate a window with a text field (no buttons, nothing, just a text field). Than, when a user types a symbol in the text filed, program immediately stores information about this in a file (which symbol was typed and when). That's it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,这并不难。以下代码片段可以让您运行 JTextField:
http:// www.java2s.com/Code/Java/Swing-JFC/TextfieldsandJavaevents.htm
这可以帮助写入文件:
http://www.java2s.com/Code/Java/File-Input-Output/WritelinesoftexttofileusingaPrintWriter.htm
No, it's not hard. The following code snippet may get you running with the JTextField:
http://www.java2s.com/Code/Java/Swing-JFC/TextfieldsandJavaevents.htm
and this can help with writing to a file:
http://www.java2s.com/Code/Java/File-Input-Output/WritelinesoftexttofileusingaPrintWriter.htm
因此,您应该阅读有关 JFrame 和 JTextField 以及 java 中的 (Add)ActionListeners(JTextField 中的函数)和文件流(如 FileInputStream 和 FileOutputStream)之后的内容。
这很容易!
So you should read something about JFrame and JTextField and after (Add)ActionListeners (function in JTextField) in java and File Streams like FileInputStream and FileOutputStream.
It's very easy !