第一种方式
// 将r.txt对象封装为File对象,可以将已有的文件或者还没有出现的封装为对象
File f1 = new File("r.txt");
第二种方式,指定目录
File f2 = new File("c:\\b", "r.txt");
第三种方式,将目录封装为对象
File f = new File("c:\\b");
File f3 = new File(f, "r.txt");
File f4 = new File("d:\\ab\\c\\d.txt");// 注:\\分隔符只能在windows操作系统,不能跨平台
所以我们需要
File("d:"+File.separator+"ab"+File.separator+"c"+File.separator+"d.txt");
//File.separator可以获取系统分隔符