jsp操作session的常用方法
阿新 • • 發佈:2019-01-11
<%
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
Date d = new Date(session.getCreationTime());
session.setAttribute("username", "admin");
session.setAttribute("password", "123456");
session.setAttribute("age", 20);
//設定當前session最大生成期限單位是秒
//session.setMaxInactiveInterval(10);//10秒鐘
//session.invalidate();//銷燬當前會話。
%>
Session建立時間:<%=sdf.format(d)%><br>
Session的ID編號:<%=session.getId()%><BR>
從Session中獲取使用者名稱:<%=session.getAttribute("username") %><br>
Session中儲存的屬性有:
<%
String[] names =session.getValueNames();
for(int i=0;i<names.length;i++)
{
out.println(names[i]+" ");
}
%>
session.removeAttribute("username"); //登出session中的username物件
session.invalidate(); //關閉session
jsp的session銷燬方式有三種:
1.執行session.invalidate();
2.session過期了
3.重啟伺服器
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
Date d = new Date(session.getCreationTime());
session.setAttribute("username", "admin");
session.setAttribute("password", "123456");
session.setAttribute("age", 20);
//設定當前session最大生成期限單位是秒
//session.setMaxInactiveInterval(10);//10秒鐘
//session.invalidate();//銷燬當前會話。
%>
Session建立時間:<%=sdf.format(d)%><br>
Session的ID編號:<%=session.getId()%><BR>
從Session中獲取使用者名稱:<%=session.getAttribute("username") %><br>
Session中儲存的屬性有:
<%
String[] names =session.getValueNames();
for(int i=0;i<names.length;i++)
{
out.println(names[i]+" ");
}
%>
session.removeAttribute("username"); //登出session中的username物件
session.invalidate(); //關閉session
jsp的session銷燬方式有三種:
1.執行session.invalidate();
2.session過期了
3.重啟伺服器