gpt4 book ai didi

java - Windows 和 Linux 中用于 Java 代码的路径定界符

转载 作者:可可西里 更新时间:2023-11-01 10:53:53 25 4
gpt4 key购买 nike

在我的 java 代码中,我有一些硬编码的路径,我写成

String workingPath = initPath + "\\" + tmpPath;

initPathtmpPath 是通过File.getParent() 获取的。现在,这适用于 Windows,如果我将我的代码移至 linux,\\ 将出现问题,因为其他两个由系统方法确定。结果是这样的

/home/mahmood/project/alpha\temp1

我该如何解决?我不想将 / 放在我的 linux 系统代码中。

最佳答案

您可以使用一个变量:File.separator

The system-dependent default name-separator character, represented as a string for convenience. This field is initialized to contain the first character of the value of the system property file.separator. On UNIX systems the value of this field is '/'; on Microsoft Windows systems it is '\'.

String workingPath = initPath + File.separator + tmpPath;

关于java - Windows 和 Linux 中用于 Java 代码的路径定界符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44250017/

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