获取文件文件路径的几种方式

// 1.获取当前文件所在的路径
System.out.println(this.getClass().getResource("").getPath());
// 2.获取再 target 下 classpath 路径
System.out.println(this.getClass().getResource("/").getPath());
// 3.也是获取 classpath 的绝对路径
System.out.println(Thread.currentThread().getContextClassLoader().getResource("").getPath());
// 4.也是获取 classpath 的绝对路径
System.out.println(this.getClass().getClassLoader().getResource("").getPath());
// 5.也是获取 classpath 的绝对路径
System.out.println(ClassLoader.getSystemResource("").getPath());
// 6.获取当前项目路径(此方法与 7 效果相同,但是可以将路径转为标准形式,会处理“.”和“..”)
System.out.println(new File("").getCanonicalPath());
// 7.获取项目绝对路径(不会处理“.”和“..”)
System.out.println(new File("").getAbsolutePath());
复制代码
  • 私信