标签:workspace getc blank ret style root 根目录 object 函数
Java获取当前项目路径:
public String getCurrentPath(){ //取得根目录路径 String rootPath=getClass().getResource("/").getFile().toString(); //当前目录路径 String currentPath1=getClass().getResource(".").getFile().toString(); String currentPath2=getClass().getResource("").getFile().toString(); //当前目录的上级目录路径 String parentPath=getClass().getResource("../").getFile().toString(); return rootPath; }
例如 项目在 D:\workspace\testPorjject
者System.getProperty("user.dir") 返回 D:\workspace\testPorjject
System.out.println(System.getProperty("user.dir"));//user.dir指定了当前的路径
标签:workspace getc blank ret style root 根目录 object 函数
原文地址:http://www.cnblogs.com/zipon/p/6193529.html