JAVA获得当前tomcat服务的项目的绝对路径

request.getSession().getServletContext().getRealPath("") ;

在括号内不写斜线,是为了保证在Windows和liunx中同时适用。

输出:

Windows:D:/apache-tomcat-9.0.0/webapps/ROOT

liunx:/usr/tomcat/apache-tomcat-9.0.12

你可能感兴趣的:(Java)