首页 > 代码库 > JSP页面间传递参数的5种方法
JSP页面间传递参数的5种方法
JSP页面间传递参数是经常需要使用到的功能,有时还需要多个JSP页面间传递参数。下面介绍一下实现的方法。
(1)直接在URL请求后添加
如:< a href="http://www.mamicode.com/thexuan.jsp?action=transparams&detail=directe">直接传递参数< /a>
特别的在使用response.sendRedirect做页面转向的时候,也可以用如下代码:
response.sendRedirect("thexuan.jsp?action=transparams&detail=directe") ,可用request.getParameter(name)取得参数
(2)jsp:param
它可以实现主页面向包含页面传递参数,如下:
1 < jsp:include page="Relative URL">
2
3 < jsp:param name="param name" value="http://www.mamicode.com/paramvalue" />
4
5 < /jsp:include>
还可以实现在使用jsp:forward动作做页面跳转时传递参数,如下:
6 < jsp:forward page="Relative URL">
7
8 < jsp:param name="paramname" value="http://www.mamicode.com/paramvalue" />
< /jsp:forward> 通过这种方式和一般的表单参数一样的,也可以通过request.getParameter(name)取得参数
(3)设置session和request
通过显示的把参数放置到session和request中,以达到传递参数的目的
9 session.setAttribute(name,value);
10
11 request.setAttribute(name,value)
取参数:
12 value=http://www.mamicode.com/(value className)session.getAttribute(name);
13
14 value=http://www.mamicode.com/(value className)request.getAttribute(name);
15
大家肯定已经注意到了,在取参数的时候,做了类型转换,这是因为放置在session和request中的对象的属性被看作 java.lang.Object类型的了,如果不转换,在将直付给value时会报classcastexception异常。
在多个JSP页面之间传递参数
1. 怎么在多个JSP页面之间进行参数传递?需要使用JSP的内置作用域对象session。利用它的两个方法setAttribute(),getAttribute()
2. 下面的这个实例实现了把第一个JSP页面的参数传递给第三个页面的功能
3. 代码如下:1.jsp
16 < html>
17 < form method=get action=2.jsp>
18 what‘s your name< input type=text name=username>
19 < input type=submit value=http://www.mamicode.com/submit>
20 < /form>
21 < /html>
4. 2.jsp
22 < html>
23
24 < form method=post action="3.jsp?pass=11">
25 < %
26 String name=request.getParameter("username");
27 session.setAttribute("username",name);
28 %>
29 Your name is:< %=request.getParameter("username")%>
30 < br>what‘s your hobby< input type=text name=hobby>
31 < input type=submit value=http://www.mamicode.com/submit>
32 < /form>
33 < /html>
34
35
5. 3.jsp
36 < html>
37 your name is:< %=session.getAttribute("username")%>
38 < br>
39 your hobby is:< %=request.getParameter("hobby")%>
40 < br>
41 your password is:< %=request.getParameter("pass")%>
42 < br>
43 < /form>
44 < /html>