码迷,mamicode.com
首页 > Web开发 > 详细

Web应用中request获取各种获取path或URI,URL的方法

时间:2016-07-10 08:41:57      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:

Web应用中有各种获取path或URI,URL的方法,假设网页访问地址:

http://localhost:8080/tradeload/TestServlet

Web应用context: /tradeload 

各路径鉴定如下:

request.getContextPath()= /tradeload
request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()= http://localhost:8080
request.getRequestURL() = http://localhost:8080/tradeload/TestServlet
request.getRequestURI() = /tradeload/TestServlet
request.getPathInfo() = null
request.getServletPath() = /TestServlet
getServletContext().getRealPath(‘/‘) = C:\server\glassfish\domains\domain1\applications\j2ee-modules\tradeload\

 

原文出处:http://improve.iteye.com/blog/741427

 

Web应用中request获取各种获取path或URI,URL的方法

标签:

原文地址:http://www.cnblogs.com/chenlei123/p/5657066.html

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