1. File file = new File(String pathname) ;
将指定路径的文件 或文件夹 封装成 File对象
2.File file = new File(String parent, String child) ;
根据 parent 路径名字符串和 child 路径名字符串创建一个新 File
3.File file = new File(File parent, String child) ;
根据 parent 抽象路径名和 child 路径名字符串创建一个新 File
|
|