java得到文件路径的方法
2015-09-02 本文已影响214人
Longwide
- 根据class的resources得到编译后的类路径
File file = new File("");//任意对象均可
URL url = file.getClass().getResource("/");
String path = url.getPath();
得到的项目target后的类路径,资源路径也在下面:
打印pathpath的路径下的文件
- 根据new File("")得到eclipse的项目路径
File file = new File("");
System.out.println(file.getCanonicalPath());
项目路径
正好是src和target所在位置
- 使用System获取
System.out.println(System.getProperty("user.dir"));
得到的路径