java.io.IOException: 系统找不到指定的路径,是怎么回事啊
程序是这样的,在一个目录里面新建文件,目录是存在的。
import java.io.*;
public class TestReader {
public static void main(String[] args)
{
File file=new File("d:\\Java\\IO","newFile.txt");
//File file=new File("d:\\java\\io");
if (!file.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
错误如下:
NO
java.io.IOException: 系统找不到指定的路径。
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(Unknown Source)
at TestReader.main(TestReader.java:17)