📌  相关文章
📜  查找当前工作目录的Java程序

📅  最后修改于: 2022-05-13 01:54:28.228000             🧑  作者: Mango

查找当前工作目录的Java程序

Java系统类中定义getproperty() 方法 它用于检索参数列表中命名的属性的值。此方法属性由接受参数的键指定。如果该属性不存在,则此版本的 getProperty 返回 null。

句法 :

public static String getProperty(String key)

范围 :

  • 键:我们想要的系统属性的键

回报:

  • 系统属性作为指定的键
  • Null :如果该键不存在属性。

例子:

Java
// Java Program to Find 
// current working directory
import java.io.*;
  
public class GFG {
    
    public static void main(String[] args)
    {
  
        // Getting the path of system property
        String path = System.getProperty("user.dir");
  
        // Printing the path of the working Directory
        System.out.println("Working Directory = " + path);
    }
}


输出: