File的三种构造方法

在E盘Test目录下创建Demo.txt

 

第一个构造函数:

  File(File parent, String child),从父抽象路径名和子路径名字符串创建新的 File实例;

        File filePath = new File("E:"+File.separator+"Test");
        File fs = new File(filePath, "Demo_1.txt");
        fs.createNewFile();

第二个构造函数:

  File(String pathname)通过将给定的路径名字符串转换为抽象路径名来创建新的 File实例;

        File s = new File("E:"+File.separator+"Test"+File.separator+"Demo_2.txt");
        s.createNewFile();

第三个构造函数:

  File(String parent, String child),从父路径名字符串和子路径名字符串创建新的 File实例;

        File ss = new File("E:"+File.separator+"Test", "Demo_3.txt");
        ss.createNewFile();

 

如果E盘下没有Test目录,创建file会报错

Exception in thread "main" java.io.IOException: 系统找不到指定的路径。
	at java.io.WinNTFileSystem.createFileExclusively(Native Method)
	at java.io.File.createNewFile(File.java:883)

解决方法:使用mkdirs();    //创建由此抽象路径名命名的目录,包括任何必需但不存在的父目录

        File filePath = new File("E:"+File.separator+"Test");
        filePath.mkdirs();
        File fs = new File(filePath, "Demo_1.txt");
        fs.createNewFile();

 

你可能感兴趣的:(File的三种构造方法)