Java获取项目根目录和实际路径地址
一.读取项目根目录
class="java">String contextPath = request.getContextPath("");
读取到的是ApplicationContext
如:项目首页为:localhost:8080/hello/index.jsp
则此时的contextPath为:“/hello”
二.读取项目在硬盘上实际路径
String realRath = request.getSession().getServletContext().getRealPath("/");
读取到的是tomcat中部署的项目地址
如:D:\Program Files\apache-tomcat-7.0.27\webapps\hello
?