File.separator或File.pathSeparator


519

File该类中,有两个字符串,separatorpathSeparator

有什么不同?我什么时候应该使用另一个?


6
命名有点混乱,需要这样的快速操作就很糟糕(参见Perl)。看的例子pathSeparatorCharseparatorChar。或使用简单的助记符:pathSeparator分隔路径。
maaartinus 2011年

6
以一分钟他们的同时打印屏幕会回答你的问题......
让·弗朗索瓦·科贝特

13
虽然我通常会同意,但仅在他的系统上打印它们并不会显示其他操作系统的变体。
b1nary.atr0phy 2015年

Answers:


681

如果你的意思是File.separatorFile.pathSeparator则:

  • File.pathSeparator用于在文件路径列表中分隔各个文件路径。考虑在Windows上的PATH环境变量。您使用a ;分隔文件路径,因此在Windows File.pathSeparator上将是;

  • File.separator/\用于拆分到特定文件的路径。例如在Windows上,\C:\Documents\Test


6
好像File.separator应该File.fileSeparator就到File.pathSeparator
艾迪

1
@Eddy我明白您的意思了,但是由于类名是,所以它可能是多余的File。我认为文件部分是隐含的。但是谁知道他们为什么要用Java做很多事情。
user489041 '16

117

在构建文件路径时使用分隔符。因此,在unix中,分隔符为/。因此,如果您想构建unix路径,/var/temp可以这样做:

String path = File.separator + "var"+ File.separator + "temp"

您可以使用pathSeparator,当你在类路径处理的文件列表等。例如,如果您的应用将jar列表作为参数,则在unix上格式化该列表的标准方法是:/path/to/jar1.jar:/path/to/jar2.jar:/path/to/jar3.jar

因此,给定文件列表,您将执行以下操作:

String listOfFiles = ...
String[] filePaths = listOfFiles.split(File.pathSeparator);

5
如果您正在构建一个* nix路径,/var/temp那么它就没有用了,File.separator因为您已经拥有依赖于平台的代码。可能还要对路径进行硬编码。
isapir '16

109

java.io.File类包含四个静态分隔符变量。为了更好的理解,让我们借助一些代码来理解

  1. 分隔符:取决于平台的默认名称分隔符,为String。对于Windows,它是“ \”,对于Unix,它是“ /”
  2. spacerChar:与分隔符相同,但为char
  3. pathSeparator:路径分隔符的平台因变量。例如Unix系统中用“:”和“;”分隔的路径的PATH或CLASSPATH变量列表。在Windows系统中
  4. pathSeparatorChar:与pathSeparator相同,但为char

请注意,所有这些都是最终变量,并且取决于系统。

这是打印这些分隔符变量的Java程序。FileSeparator.java

import java.io.File;

public class FileSeparator {

    public static void main(String[] args) {
        System.out.println("File.separator = "+File.separator);
        System.out.println("File.separatorChar = "+File.separatorChar);
        System.out.println("File.pathSeparator = "+File.pathSeparator);
        System.out.println("File.pathSeparatorChar = "+File.pathSeparatorChar);
    }

}

以上程序在Unix系统上的输出:

File.separator = /
File.separatorChar = /
File.pathSeparator = :
File.pathSeparatorChar = :

Windows系统上程序的输出:

File.separator = \
File.separatorChar = \
File.pathSeparator = ;
File.pathSeparatorChar = ;

为了使程序平台独立,我们应该始终使用这些分隔符来创建文件路径或读取任何系统变量,例如PATH,CLASSPATH。

这是显示如何正确使用分隔符的代码段。

//no platform independence, good for Unix systems
File fileUnsafe = new File("tmp/abc.txt");
//platform independent and safe to use across Unix and Windows
File fileSafe = new File("tmp"+File.separator+"abc.txt");

1
请注意,在Java中,反斜杠字符实际上是\\,因为单个反斜杠是其他特殊字符速记的转义字符,因此反斜杠本身用于转义自身。该Stringchar通过上述方法返回做回格式正确的反斜杠(如果在Windows上)。
Erik

新File(“ tmp / abc.txt”); 这对于Windows和Linux来说是核心的,但是对于unix new File(“ tmp \\ abc.txt”)而言不是核心的;这是唯一的问题Unix
DEV-Jacol
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.