欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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包所在的目录。