gpt4 book ai didi

java - 如何用Java调用一个新的记事本并将其保存在windows中的目录中?

转载 作者:行者123 更新时间:2023-12-01 16:34:14 24 4
gpt4 key购买 nike

我当前正在将测试执行结果记录到文本文件(现有的文本文件)中。如何创建带有时间戳的文本文件并将其保存在 Windows 目录中?我当前使用的代码是

    File outputResultFile = new File(CompleteFileNameForNotepad);
PrintWriter outputFile = new PrintWriter(new FileWriter(outputResultFile));
String str = "text to write in to the file";
outputFile.println(str);
outputFile.close();

感谢您的帮助。

最佳答案

String fileName = new SimpleDateFormat("yyyy-MM-ddTHH-mm-ss").format(new Date()) + ".txt";
File outputResultFile = new File(fileName);
...

注意:记事本通常称为"file"。

关于java - 如何用Java调用一个新的记事本并将其保存在windows中的目录中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11103278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com