import java.io.*;
public class createfile{
public static void main(String args[]) throws IOException{
File f=new File("javafile.txt");
if(f.exists())
{
f.createNewFile();
System.out.println("New file \"javafile.txt\"has been created to the current directory");
}
else
System.out.println("The specified file is already exist");
}
}
我创建了一个现有文件“javafile.txt”。我在其中输入了一些文本。如果我编译 javac,我希望该文件必须通过以下代码重新创建
if(f.exists())
{
f.createNewFile();
}
但它没有创建..当我打开它时,现有文件打开。为什么?