码迷,mamicode.com
首页 > Web开发 > 详细

cookie-显示用户上次访问网站的时间

时间:2015-10-18 22:44:11      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:

    
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        //防止中文乱码
        response.setContentType("text/html;charset=UTF-8");
        PrintWriter out=response.getWriter();
        out.write(" 你上次访问的时间是:");
        //获取本地的cookie
        Cookie[] cookies=request.getCookies();
        for(int i=0;cookies!=null && i<cookies.length;i++){
            if(("lastAccessTime").equals(cookies[i].getName())){
            //字符串的日期转换为long,在通过Date转化为日期,通过toLocalString 来输出
            Long cookieValue=Long.parseLong(cookies[i].getValue());
            Date date=new Date(cookieValue);
            out.write(" 你上次访问的时间是:");
            out.write(date.toLocaleString());
            }
        }
        //把cookie写回本地去
        Cookie cookie=new Cookie("lastAccessTime",System.currentTimeMillis()+"");
        cookie.setMaxAge(1*24*3600);
        cookie.setPath("/day08");
        response.addCookie(cookie);
    }

 

cookie-显示用户上次访问网站的时间

标签:

原文地址:http://www.cnblogs.com/lyjs/p/4890335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!