• 11月26日学习日志


    今天学习了jsp中Session的应用。

    这个例子描述了如何使用HttpSession对象来获取创建时间和最后一次访问时间。我们将会为request对象关联一个新的session对象,如果这个对象尚未存在的话。

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <%@ page import="java.io.*,java.util.*" %>
    <%
       // 获取session创建时间
       Date createTime = new Date(session.getCreationTime());
       // 获取最后访问页面的时间
       Date lastAccessTime = new Date(session.getLastAccessedTime());
    
       String title = "再次访问菜鸟教程实例";
       Integer visitCount = new Integer(0);
       String visitCountKey = new String("visitCount");
       String userIDKey = new String("userID");
       String userID = new String("ABCD");
    
       // 检测网页是否有新的访问用户
       if (session.isNew()){
          title = "访问菜鸟教程实例";
          session.setAttribute(userIDKey, userID);
          session.setAttribute(visitCountKey,  visitCount);
       } else {
           visitCount = (Integer)session.getAttribute(visitCountKey);
           visitCount += 1;
           userID = (String)session.getAttribute(userIDKey);
           session.setAttribute(visitCountKey,  visitCount);
       }
    %>
    <html>
    <head>
    <title>Session 跟踪</title>
    </head>
    <body>
    
    <h1>Session 跟踪</h1>
    
    <table border="1" align="center"> 
    <tr bgcolor="#949494">
       <th>Session 信息</th>
       <th></th>
    </tr> 
    <tr>
       <td>id</td>
       <td><% out.print( session.getId()); %></td>
    </tr> 
    <tr>
       <td>创建时间</td>
       <td><% out.print(createTime); %></td>
    </tr> 
    <tr>
       <td>最后访问时间</td>
       <td><% out.print(lastAccessTime); %></td>
    </tr> 
    <tr>
       <td>用户 ID</td>
       <td><% out.print(userID); %></td>
    </tr> 
    <tr>
       <td>访问次数</td>
       <td><% out.print(visitCount); %></td>
    </tr> 
    </table> 
    </body>
    </html>
  • 相关阅读:
    基于xtrabackup的PointInTime Recovery备份恢复
    使用折半查找法删除
    五月第二周
    MySQL 5.5 外键不能引用分区表主键
    MYSQL 登录漏洞,Percona Server说明
    Detectron2学习笔记 Sanny.Liu
    取客户MAP地址
    DataReader转实体<T>
    从程序员到翻译的感受
    .net中的浅拷贝和深拷贝
  • 原文地址:https://www.cnblogs.com/20193925zxt/p/14160294.html
Copyright © 2020-2023  润新知