Servlet中的几个路径有关的方法
2008-01-05 10:31:21 来源:WEB开发网核心提示:作者: jini 在编写jsp/Servlet应用时经常需要从传入的链接中提取一些信息,HttpServletRequest提供了多个方法,Servlet中的几个路径有关的方法,这些方法之间轻易混淆,总结并举例如下
作者: jini
在编写jsp/Servlet应用时经常需要从传入的链接中提取一些信息。HttpServletRequest提供了多个方法,这些方法之间轻易混淆。总结并举例如下,希望能对大家有所帮助。
举例:http://localhost:7001/myservlet/somepath/test?someparam=somevalue
request.getPathInfo():返回/somepath/test
request.getRequestURL():返回http://localhost:7001/myservlet/somepath/test
request.getRequestURI():返回/myservlet/somepath/test
request.getServletPath():返回/myservlet
request.getQueryString():返回someparam=somevalue
更多精彩
赞助商链接