• Java学习


    今天学习了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>
  • 相关阅读:
    使用 Eclipse 调试 Java 程序的 10 个技巧
    oracle9i,10g再谈优化模式参数问题.
    oracle 索引
    解决IE不能在新窗口中向父窗口的下拉框添加项的问题
    获取文档的尺寸:利用Math.max的另一种方式
    揭开constructor属性的神秘面纱
    测试杂感:Windows8也许需要Account Hub
    探索式测试:探索是为了学习
    一次有教益的程序崩溃调试 (下)
    软件测试读书列表 (2013.8)
  • 原文地址:https://www.cnblogs.com/wrljzb/p/14170594.html
Copyright © 2020-2023  润新知