集册 Java实例教程 获取主目录的路径

获取主目录的路径

欢马劈雪     最近更新时间:2020-01-02 10:19:05

522
创建一个指向主目录的路径,您可以按照以下示例所示进行操作。
/*nowjava - 时  代  Java*/

import java.nio.file.Path;

import java.nio.file.Paths;


public class Main {

  public static void main(String[] args) {

    Path path = Paths.get(System.getProperty("user.home"), "downloads",

        "test1.txt");

  }

}