概述
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包所在的目录。
最后
以上就是和谐牛排为你收集整理的Java项目拿到当前项目所在目录的全部内容,希望文章能够帮你解决Java项目拿到当前项目所在目录所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复