如何在 Java 中编辑 .txt 文件
我想我可以使用“扫描仪”来读取 .txt 文件,但我如何编写甚至创建新的文本文件?
i think i can use "Scanner" to read a .txt file but how can i write or even create a new text file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这个基本 I/O 和文件教程应该可以解决问题: )
This Basic I/O and Files Tutorial should do the trick :)
创建一个java.io.FileOutputStream来写入它。要写入文本,您可以在其周围创建一个
PrintWriter
。Create a java.io.FileOutputStream to write it. To write text, you can create a
PrintWriter
around it.创建新的文本文件
如果文件不可用,则将创建一个文件;如果文件已可用,则将向其中追加数据。
To create a new text file
This will create a file if not available and if a file is already available it will append data to it.
这个简单的代码示例将在文本文件不存在时创建它,如果存在,它将覆盖它:
希望它有帮助!
This simple code example will create the text file if it doesn't exist, and if it does, it will overwrite it:
Hope it helps!