gpt4 book ai didi

java - createNewFile() 之后 myfile 在哪里

转载 作者:行者123 更新时间:2023-12-03 08:16:25 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Where will be create a new file in java, when path is not given?

我正在尝试在当前目录中创建一个 txt 文件。我运行了下面的代码,没有错误。但我无法在任何地方找到 myfile.txt。我想在当前目录中创建 myfile.txt。我该怎么做?

我使用的代码:

public void createFile(){
try{
File f = new File("myfile.txt");
if (!f.exists()){
f.createNewFile();
System.out.println("New file \"myfile.txt\" has been created");
}
}catch(Exception e){
System.out.println("Error while creating file " + e);
}
}

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