码迷,mamicode.com
首页 > 其他好文 > 详细

getContextPath、getServletPath、getRequestURI的区别

时间:2017-05-05 13:01:32      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:path   example   code   浏览器   打印   http   路径   div   get   

假定你的web application名称为example,你在浏览器中输入请求路径: 

https://localhost:8080/example/main/edit.jsp

则执行下面代码后打印结果如下: 

System.out.println(request.getContextPath());
//result:/example

System.out.println(request.getServletPath());
//result:/main/edit.jsp
System.out.println(request.getRequestURI()); //result:/example/main/edit.jsp System.out.println(request.getRealPath("/")); //result:D:\Tomcat 7\webapps\example\test

 

getContextPath、getServletPath、getRequestURI的区别

标签:path   example   code   浏览器   打印   http   路径   div   get   

原文地址:http://www.cnblogs.com/donge92/p/6812169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!