📌  相关文章
📜  Java程序获取当前工作目录

📅  最后修改于: 2020-09-26 18:17:05             🧑  作者: Mango

在此程序中,您将学习获取Java中的当前工作目录。

示例1:获取当前工作目录
public class CurrDirectory {

    public static void main(String[] args) {

        String path = System.getProperty("user.dir");
        
        System.out.println("Working Directory = " + path);

    }
}

输出

Working Directory = C:\Users\Admin\Desktop\currDir

在上面的程序中,我们使用SystemgetProperty()方法获取程序的user.dir属性。这将返回包含我们的Java项目的目录。


示例2:使用路径获取当前工作目录
import java.nio.file.Paths;

public class CurrDirectory {

    public static void main(String[] args) {

        String path = Paths.get("").toAbsolutePath().toString();
        System.out.println("Working Directory = " + path);

    }
}

输出

Working Directory = C:\Users\Admin\Desktop\currDir

在上面的程序中,我们使用Pathget()方法获取程序的当前路径。这将返回到工作目录的相对路径。

然后,我们使用toAbsolutePath()将相对路径更改为绝对路径。由于它返回Path对象,因此我们需要使用toString()方法将其更改为字符串 。