0

我只是想找出一个 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。两个文件都在同一个文件夹中,拼写确实是正确的。有人知道我在做什么错吗?

4

1 回答 1

3

一切看起来都是正确的,所以需要检查几件事:

  • 扩展名中的大写字母。
  • 隐藏的额外扩展名(jim.xml.txt 但.txt 隐藏)
  • 您有多个客户目录吗?如果是这样,您的应用程序可能正在寻找另一个超出您预期的应用程序。
于 2013-06-12T12:32:27.480 回答