在JSP中,如何从URL获取参数?
例如,我有一个www.somesite.com/Transaction_List.jsp?accountID=5 要获取的
URL5 。 是否有request.getAttribute(“ accountID”)之类的会话或类似内容?
在GET请求中,请求参数取自查询字符串(URL上问号后面的数据)。例如,URL http://hostname.com?p1=v1&p2=v2包含两个请求参数--p1和p2。在POST请求中,请求参数既取自查询字符串,也取自编码在请求正文中的发布数据。
此示例演示如何在生成的输出中包括请求参数的值:
Hello <b><%= request.getParameter("name") %></b>!
如果使用URL访问页面:
http://hostname.com/mywebapp/mypage.jsp?name=John+Smith 结果输出将是:
Hello <b>John Smith</b>!
如果未在查询字符串上指定名称,则输出为:
Hello <b>null</b>!
本示例在脚本中使用查询参数的值:
<% if (request.getParameter("name") == null) { out.println("Please enter your name."); } else { out.println("Hello <b>"+request. getParameter("name")+"</b>!"); } %>
关于隐式对象中的统一表达式语言,在Java EE 5教程中写道:
隐式对象 JSP表达式语言定义了一组隐式对象:
pageContext
servletContext
session
request
response
param
paramValues
header
headerValues
cookie
initParam
pageScope
requestScope
sessionScope
applicationScope
有趣的部分以粗体显示:)
因此,要回答你的问题,你应该可以像下面这样访问它(使用EL):
${param.accountID}
或者,使用JSP脚本(不推荐):
<% String accountId = request.getParameter("accountID"); %>