在tomcat7.0下java程序如何获取根目录?

2024-11-18 08:40:38
推荐回答(1个)
回答(1):

需要放在webinf下的classes中 它自动加载时会把你的txt文件自动加载到webinf下的classes中去的。你想要取到路径的话 通过当前的类的class再得到getresoues路径名就可以了
XMLUtils.class.getResource(filePath).getPath();我是这样得到了。