且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

J2EE中EL的隐式对象param和paramValues

更新时间:2022-08-14 23:19:16

一、param.html

<html>
<head><title>param.jsp</title></head>
<body>
<form method="post" action="param.jsp">
<p>姓名:<input type="text" name="username" size="15" /></p>
<p>密码:<input type="password" name="password" size="15" /></p>
<p>性别:<input type="radio" name="sex" value="Male" checked/>男<input type="radio" name="sex" value="Female" /> 女</p>
<p>年龄:<select name="old">
<option value="10">10 - 20</option>
<option value="20" selected>20 - 30</option>
<option value="30">30 - 40</option>
<option value="40">40 - 50</option>
</select></p>
<p>兴趣:<input type="checkbox" name="habit" value="Reading"/>看书
<input type="checkbox" name="habit" value="Game"/>游戏
<input type="checkbox" name="habit" value="Travel"/>旅游
<input type="checkbox" name="habit" value="Music"/>听音乐
<input type="checkbox" name="habit" value="Tv"/>看电视</p>
<p>
<input type="submit" value="提交"/>
<input type="reset" value="清除"/>
</p>
</form>
</body>
</html>

二、param.jsp

<%@ page contentType="text/html;charset=GB2312" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<html>
<head><title>param.jsp</title></head>
<body>
<fmt:requestEncoding value="GB2312" />
姓名:<c:out value="$ {param.username}"/></br>
密码:<c:out value="$ {param.password}"/></br>
性别:<c:out value="$ {param.sex}"/></br>
年龄:<c:out value="$ {param.old}"/></br>
兴趣:<c:out value="$ {paramValues.habit[0]}"/>
      <c:out value="$ {paramValues.habit[1]}"/>
      <c:out value="$ {paramValues.habit[2]}"/>
      <c:out value="$ {paramValues.habit[3]}"/>
      <c:out value="$ {paramValues.habit[4]}"/>
</body>
</html>


原帖地址:http://blog.sina.com.cn/s/blog_66c2c28e010172ap.html