我只是想找出一个 XML 文件是否存在。我有这个代码:
File f = new File("customers/jim.xml");
File g = new File("customers/jim.txt");
if(f.exists())
{
System.out.println("File f exists!");
}
else
{
System.out.println("File f not found!");
}
if(g.exists())
{
System.out.println("File g exists!");
}
else
{
System.out.println("File g not found!");
}
输出:
File f not found!
File g exists!
找到了文本文件,没有找到xml。两个文件都在同一个文件夹中,拼写确实是正确的。有人知道我在做什么错吗?