Tomcat下获取web应用的绝对路径

 可以获取到"%tomcat_root%\%web_app_name%\"的绝对路径

String webRoot = request.getSession().getServletContext().getRealPath("/");  

 

你可能感兴趣的:(Tomcat下获取web应用的绝对路径)