java获取工程目录的几种方法
this.getClass().getResource("/").getPath(); // 获取当前项目的 classpath,编译后加载的目录
System.getProperty("user.dir"); // 获取当前项目的根路径
String separator= File.separator; // 获取当前系统目录分割符号
java 如何获取绝对路径与相对路径
File file = new File(System.getProperty("user.dir")+File.separator+"xuexi.iml");
System.out.println(file.getAbsolutePath()); // 绝对路径
System.out.println(file.getCanonicalPath()); // 相对路径
网友评论