用session.get/setAttribute();返回值为null
<%
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
Date d = new Date(session.getCreationTime());
session.setAttribute("username","admin");
%>
Session创建时间:<%=sdf.format(d) %><br>
Session的id编号:<%=session.getId() %><br>
从Session中获取用户名<%=session.getAttribute("uesrname") %><br>