Java:如何立即将文本字段中的更改发送到文件?

发布于 2024-08-19 21:31:50 字数 120 浏览 3 评论 0原文

用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 技术交流群。

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

发布评论

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

评论(2

抹茶夏天i‖ 2024-08-26 21:31:50

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

不及他 2024-08-26 21:31:50

因此,您应该阅读有关 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 !

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