JSP session 获取id和session持续时间

<%@ page contentType="text/html;charset=utf-8" pageEncoding="utf-8"%>
<html>
<head>
<title>
show session
</title>
</head> <body>
<center>
<h2>获取session</h2> <%
String sessionID= session.getId();
Long startTime=session.getCreationTime();
Long endTime=session.getLastAccessedTime();
Long time =(endTime-startTime)/ 1000;
%>
session ID: <%=sessionID%>
</br>
停留时间: <%=time%> 秒
</center> </body>
</html>
上一篇:win32 数据类型 vs c#


下一篇:新手 php连接数据库大概。简单过程浅析以及遇到的问题分析