在 C盘创建一个文件,以前试过很多次的,这次却报拒绝访问。
File f=new File("C:\\"+"file.txt");
File f1=new File("C:"+File.separator+"file.doc");
try {
f.createNewFile();
// System.out.println("createNewFile: "+f.createNewFile());
// System.out.println("delete: "+f.delete());
// System.out.println("createNewFile: "+f1.createNewFile());
// System.out.println("delete: "+f1.delete());
} catch (IOException e) {
e.printStackTrace();
java.io.IOException: 拒绝访问。
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:883)
at com.Test.Test2.main(Test2.java:19) |