Java程序获取当前工作目录 - Java教程

由网友 大卫 发布 阅读 19

Java程序获取当前工作目录 - Java教程

Java 实例大全

在该程序中,您将学习获取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

在上面的程序中,我们使用System的getProperty()方法来获取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

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

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

Java 实例大全

Java程序将集合(HashMap)转换为列表 Java程序获取当前日期/时间