Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想“覆盖”输入文件中的内容并将其替换为更新的信息。
如果您可以读取整个文本文件,然后关闭它,这样做 - 然后使用FileOutputStream包裹在OutputStreamWriter, 中(FileOutputStream默认情况下将覆盖)。
FileOutputStream
OutputStreamWriter
如果您需要同时读取和写入,则应写入不同的文件,然后删除“旧”文件并将“新”文件重命名到位。