JAVA-JSP内置对象之request获得封装所有参数值的Map

时间:2024-08-17 23:05:38

JAVA-JSP内置对象之request获得封装所有参数值的Map

相关资料:
《21天学通Java Web开发》

获得封装所有参数值的Map
1.通过request对象的getParameterMap()方法来获得封装所有的参数值的Map对象。
2.通过该Map对象可以获得指定参数的参数值。

RequestForm5.jsp

 <%@ page language="java" contentType="text/html;charset=gb2312" %>
<html>
<head>
<title>表单</title>
</head>
<body>
<form action="RequestDemo5.jsp" method="post">
用户名:<input type= "text" name="username"/><br>
用户密码:<input type= "password" name="userpassword"/><br>
喜欢的运动:
<input type = "checkbox" name="sport" value="pingpang">乒乓球
<input type = "checkbox" name="sport" value="badketball">篮球
<input type = "checkbox" name="sport" value="football">足球<br>
<input type="submit" value="提交">
</form>
</body>
</html>

RequestDemo5.jsp

 <%@ page language="java" contentType="text/html;charset=gb2312" import="java.util.*" %>
<html>
<head>
<title>使用request对象获得封装所有参数值的Map</title>
</head>
<body>
<%-- 通过request对象的getParameterMap封装所有的参数值的Map --%>
<%
Map<String, String[]> mapParamter = request.getParameterMap();//获得封装备的有参数值的Map
String[] strUsername = (String[])mapParamter.get("username");//获得其中的username参数值
out.println("用户名:"+strUsername[0]+"<br>");//打印输出username参数值
String[] strPassword = (String[])mapParamter.get("userpassword");//获得suerpassword参数值
out.println("用户密码:"+strPassword[0]+"<br>");//打印输出userpassword参数值
String[] strSport = (String[])mapParamter.get("sport");//获得其中的sport参数值
out.println("喜欢的运动:");
for(String sport:strSport){
out.println(sport);//遍历打印输出sport参数值
}
%>
</body>
</html>