java得到文件路径的方法

  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());
项目路径
java得到文件路径的方法_第1张图片
正好是src和target所在位置
  1. 使用System获取
System.out.println(System.getProperty("user.dir"));
得到的路径

你可能感兴趣的:(java得到文件路径的方法)