- 根据class的resources得到编译后的类路径
File file = new File("");//任意对象均可
URL url = file.getClass().getResource("/");
String path = url.getPath();
得到的项目target后的类路径,资源路径也在下面:
- 根据new File("")得到eclipse的项目路径
File file = new File("");
System.out.println(file.getCanonicalPath());
- 使用System获取
System.out.println(System.getProperty("user.dir"));