获取工程文件绝对路径的两个方法

例如:
web工程名:project
servletDemo路径:src下面cn.bdqn.demo.servletDemo.java 其配置的web.xml路径为/servlet/servletDemo
test.jsp路径:project/WebRoot/jsp/test.sp
1、通过Test.java类获取src下"1.properties"的绝对路径
Test.class.getClassLoader().getResource("1.properties").getPath()
注意:此方法只能获得java类编译之后的class的绝对路径,而无法获取其本身java文件的绝对路径
2、获取test.jsp的web绝对路径
<%=request.getContextPath()%>/jsp/test.sp相当于//localhost:8080/jsp/test.sp

你可能感兴趣的:(jsp)