File f = new File("d:"+File.separator+"heimaio"+File.separator+"FileDemo.txt");
try {
System.out.println(f.createNewFile());
} catch (IOException e) {
e.printStackTrace();
}
//这里的文件名字FileDemo.txt,在上面的路径下没有与它同名字的文件。为什么创建不出来,输出值是false呢。
里面只有一个filedemo.txt只有两个字母是大小写区别,这样也认为文件的名字是相等的吗,就创建不成功啊?
文件名字不区分大小写吗?
麻烦大家帮忙解释下! |