gpt4 book ai didi

Java file.exists() 找不到 XML 文件

转载 作者:行者123 更新时间:2023-12-01 23:45:54 27 4
gpt4 key购买 nike

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

最佳答案

一切看起来都正确,所以需要检查一些事情:

  • 扩展名中的大写字母。
  • 隐藏的额外扩展名(jim.xml.txt 但隐藏 .txt)
  • 您有多个客户目录吗?如果是这样,您的应用程序可能正在寻找与您预期不同的另一个应用程序。

关于Java file.exists() 找不到 XML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17065513/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com