Java项目拿到当前项目所在目录
程序员文章站
2022-05-09 23:47:10
...
Java项目拿到当前项目所在目录
两种方式
String projectPath1 = System.getProperty("user.dir");
System.out.println("projectPath1==" + projectPath1);
File dir = new File(""); //参数为空
String projectPath2 = dir.getCanonicalPath();
System.out.println("projectPath2==" + projectPath2);
如果项目打成jar包,那么拿到的路径是项目jar包所在的目录。