gpt4 book ai didi

java - 空文件构造函数既不是文件也不是目录

转载 作者:搜寻专家 更新时间:2023-10-31 19:59:36 25 4
gpt4 key购买 nike

下面两种创建文件的方法有什么区别?

new File(System.getProperty("user.dir"));
new File("");

Java 将第一个识别为目录,而第二个既不是文件也不是目录!为什么会这样?


代码:

public class MainClass {
public static void main(String[] args) throws Exception {
System.out.println("File Created with CurrentDir taken From System Props");
File f1 = new File(System.getProperty("user.dir"));
System.out.println("Absolute Path: " + f1.getAbsolutePath());
System.out.println("isDirectory: " + f1.isDirectory());
System.out.println("isFile: " + f1.isFile());

System.out.println();

System.out.println("File Created with Empty String Path");
File f2 = new File("");
System.out.println("Absolute Path: " + f2.getAbsolutePath());
System.out.println("isdirectory: " + f2.isDirectory());
System.out.println("isFile: " + f2.isFile());
}
}

输出:

File Created with CurrentDir taken From System Props
Absolute Path: D:\Java Workspace\my_Workspace\JavaTest
isDirectory: true
isFile: false

File Created with Empty String Path
Absolute Path: D:\Java Workspace\my_Workspace\JavaTest
isdirectory: false
isFile: false

最佳答案

解释

这可能看起来有点不直观,但实际上根据它的 documentation 这正是该类应该如何工作的.它在文档中称为空抽象路径名:

The empty abstract pathname has no prefix and an empty name sequence.

并且来自您的构造函数 File#File(String) :

Creates a new File instance by converting the given pathname string into an abstract pathname. If the given string is the empty string, then the result is the empty abstract pathname.

所以 File类实际上将空名称 解释为实际名称。当你测试 File#isDirectory()File#isFile()因此它检查是否存在像

这样的文件或目录
D:\Java Workspace\iTAW_Workspace\JavaTest\<empty>

注意 <empty>我写它是为了表明它实际上在这里搜索一个空名称 的文件。显然这样的文件不可能存在,因此结果总是false。 .所以再次,它不检查

D:\Java Workspace\iTAW_Workspace\JavaTest\

而是此目录中的空文件,它不存在。

不幸的是,您在使用 File#toAbsolutePath() 时看不到它方法,因为没有代表空名称


蔚来汽车

注意类File和它相关的一切都是过时的。如今,文件 IO 是使用 NIO 围绕 Files 完成的。 , PathsPath .这个 API 更简洁、更直观。它也将按预期在您当前的示例中工作:

Files.isDirectory(Paths.get("")); // true

看看 documentation了解更多。

关于java - 空文件构造函数既不是文件也不是目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50813491/

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