jsp---EL存取器(3)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-10 12:25 点击:次
09
<%
10
//新建一个HashMap
11
HashMap userInfo = new HashMap();
12
//在HashMap中设置值
13
userInfo.put("username","zhangdapeng");
14
userInfo.put("password","zhnagda123");
15
//将值存储到session范围中
16
session.setAttribute("userInfo",userInfo);
17
18
%>
19
<a href="GetMapDemo.jsp">跳转到GetMapDemo.jsp</a>
20
</body>
21
</html>
01
<%@page language="java" contentType="text/html;charset=gb2312"%>
02
<!DOCTYPE html>
03
<html>
04
<head>
05
<title>使用存储器读取map中的数据</title>
06
</head>
07
<body>
08
用户名:${sessionScope.userInfo.username}<br />
09
密码:${sessionScope.userInfo.password}<br />
10
</body>
11
</html>
使用存储器读取数组中的数据
01
<%@page language="java" contentType="text/html;charset=gb2312"%>
02
<%@page import="java.util.*,com.javaweb.ch08.*" %>
03
<!DOCTYPE html>
04
<html>
05
<head>
06
<title>设置Array页面</title>
07
</head>
08
<body>
09
<%
10
String[] names = {"zhangda1","zhangda2","zhangda3"};
11
//将值存储到session范围中
12
session.setAttribute("names",names);
13
14
相关新闻>>
- 发表评论
-
- 最新评论 更多>>