例如 : http://localhost:8080/projectName/aaa/bbb?name=zhangsan
获取项目名(目录) /projectName
String uri = request.getContextPath();
获取目录下的全名称 /aaa/bbb
String url = request.getServletPath();
获取当前页面所在服务器的全路径 d:aaawebappsindex.jsp
request.getRealPath("index.jsp")
在类中获取绝对路径
A.class.getResource("/").getPath
参考 : http://zjutsoft.iteye.com/blog/1084260