java得到文件路径的方法

2015-09-02  本文已影响214人  Longwide
  1. 根据class的resources得到编译后的类路径
File file = new File("");//任意对象均可
URL url = file.getClass().getResource("/");
String path = url.getPath();

得到的项目target后的类路径,资源路径也在下面:

打印path
path的路径下的文件
  1. 根据new File("")得到eclipse的项目路径
File file = new File("");
System.out.println(file.getCanonicalPath());
项目路径 正好是src和target所在位置
  1. 使用System获取
System.out.println(System.getProperty("user.dir"));
得到的路径
上一篇下一篇

猜你喜欢

热点阅读