在该程序中,您将学习获取Java中的当前工作目录。
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项目的目录。
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()方法将其更改为字符串