本文主要是介绍获取tomcat下java项目根目录路径,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
String nodepath = this.getClass().getClassLoader().getResource("/").getPath();
// 项目的根目录路径
String filePath = nodepath.substring(1, nodepath.length() - 16);
注意:这里每个文件夹中的名字不能有空格,不然会报错
这篇关于获取tomcat下java项目根目录路径的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!