本帖最后由 杨胜男 于 2014-6-18 18:10 编辑
public static void consMethod()throws IOException
{
//将a.txt封装成file对象。可以将已有的和未出现的文件或者文件夹封装成对象。
File f1 = new File("a.txt");
f1.createNewFile();
File f2 = new File("c:\\abc","b.txt");
f2.createNewFile();
File d = new File("c:\\abc");
File f3 = new File(d,"c.txt");
f3.createNewFile();
}
为什么f2.createNewFile();和f3.createNewFile();会报错? |