new File(“”) vs. new File(“.”): 功能还是 Bug?

2022-09-01 07:48:49

new File("")并产生相同的规范路径,但前一个对象是不可处理的。请考虑以下代码,以及两个对象如何返回相同的规范路径。文档指出,规范路径“既绝对又唯一”。然而,只有使用 “.” 参数创建的文件才是实际可用的。new File(".")

难道不应该在某个时候引发异常吗?无论是在空字符串构造函数调用中(因为创建的对象似乎无效),还是至少在getCanonicalPath中(至少声明IOException)?

import java.io.File;
import java.io.IOException;

public abstract class Test {

    public static void main(String[] args) throws Exception {
        testFile("");
        testFile(".");
    }

    private static void testFile(String arg) throws IOException {
        System.out.format("File constructor argument: \"%s\"\n", arg);
        File g = new File(arg);
      System.out.format("toString()            = \"%s\"\n", g.toString());
        System.out.format("getAbsolutePath()     = \"%s\"\n", g.getAbsolutePath());
        System.out.format("getAbsoluteFile()     = \"%s\"\n", g.getAbsoluteFile());
        System.out.format("getgetCanonicalPath() = \"%s\"\n", g.getCanonicalPath());
        System.out.format("getgetCanonicalFile() = \"%s\"\n", g.getCanonicalFile());
        System.out.format("exists()              = %s\n", g.exists());
        System.out.format("isDirectory()         = %s\n", g.isDirectory());
        System.out.println();
  }
}

以及它产生的输出:

File constructor argument: ""
toString()            = ""
getAbsolutePath()     = "C:\usr\workspace\Test"
getAbsoluteFile()     = "C:\usr\workspace\Test"
getgetCanonicalPath() = "C:\usr\workspace\Test"
getgetCanonicalFile() = "C:\usr\workspace\Test"
exists()              = false
isDirectory()         = false

File constructor argument: "."
toString()            = "."
getAbsolutePath()     = "C:\usr\workspace\Test\."
getAbsoluteFile()     = "C:\usr\workspace\Test\."
getgetCanonicalPath() = "C:\usr\workspace\Test"
getgetCanonicalFile() = "C:\usr\workspace\Test"
exists()              = true
isDirectory()         = true

答案 1

将构造函数与空字符串结合使用时,将创建一个具有两个属性的 File 实例:

  • 它实际上并不存在。
  • 它的绝对路径名是“空抽象路径名”

使用 File(“.” ) 时,您可以创建一个不同的文件:

  • 它确实存在于文件系统上
  • 其绝对路径名包含“.”字符

第二个文件存在,而不是第一个文件。因此,第二个文件是唯一一个应该遵守getCanonicalPath中解释的规则的文件:

表示现有文件或目录的每个路径名都具有唯一的规范形式。

由于第一个文件不是真实的,因此它们的规范路径相等的事实是没有意义的。

因此,你所指出的behviour不是一个错误。这是我们期望从JVM中得到的。

您将在javadoc中找到所有信息


答案 2

通过将空字符串传递给构造函数,您将创建一个空的“抽象路径名”。来自 java.io.File Javadoc

如果给定的字符串是空字符串,则结果是空的抽象路径名。

在这种情况下,“空抽象路径名”在物理上不存在,因此计算结果为 。您获得空字符串目录的原因在以下 Javadoc 中进行了描述:exists()falsegetAbsolutePath

如果此抽象路径名是空的抽象路径名,则返回当前用户目录的路径名字符串,该字符串由系统属性 user.dir 命名。