首页 > 学院 > 开发设计 > 正文

Servlet中的几个路径有关的方法

2019-11-18 12:32:48
字体:
来源:转载
供稿:网友

  作者: 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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表