如何通过Java代码获取tomcat服务器的绝对路径

如题所述

//也许有你想要的,前提是在项目布署运行起来后,在servlet中或controller中运行以下代码即可。
System.out.println(this.getClass().getResource("/"));//结果:file:/E:/work/service/tomcat7.0.65/webapps/mvc_adminlte/WEB-INF/classes/
System.out.println(System.getProperty("catalina.home"));//结果:E:\work\service\tomcat7.0.65
System.getProperty("user.dir");//结果:E:\work\service\tomcat7.0.65\bin
System.out.println(request.getSession().getServletContext().getRealPath("/"));//结果:E:\work\service\tomcat7.0.65\webapps\你的项目名称\
希望能帮到你!

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答