会话技术_Cookie

时间:2021-04-08 13:51:09   收藏:0   阅读:0

cookie登录案例

package com.levizhao.cookie;

import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import javax.xml.crypto.Data;
import java.io.IOException;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.text.SimpleDateFormat;
import java.util.Date;

/*
    在服务器中的Servlet判断是否有一个名为lastTime的cookie
 1. 有:不是第一次访问
     1. 响应数据:欢迎回来,您上次访问时间为:2018年6月10日11:50:20
     2. 写回Cookie:lastTime=2018年6月10日11:50:01
 2. 没有:是第一次访问
     1. 响应数据:您好,欢迎您首次访问
     2. 写回Cookie:lastTime=2018年6月10日11:50:01
 */

@WebServlet("/TestCookie")
public class TestCookie extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        this.doPost(request, response);
    }

    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // 设置响应的消息体的数据格式以及编码
        response.setContentType("text/html;charset=utf-8");

        // 获取所有的Cookie
        Cookie[] cookies = request.getCookies();
        boolean flag = false; // 没有cookie为lastTime
        // 遍历cookie数组
        if (cookies!=null && cookies.length>0){
            for (Cookie cookie:cookies){
                // 获取cookie的名称
                String name = cookie.getName();
                // 判断名称是否是: lastTime
                if ("lastTime".equals(name)){
                    // 有该Cookie, 不是第一次访问
                    flag = true; //有lastTime的cookie

                    // 设置Cookie的value
                    // 获取当前时间的字符串, 重新设置Cookie的值, 重写发送cookie
                    Date date = new Date();
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
                    String str_date = sdf.format(date);
                    System.out.println("编码前-新设置的访问时间:"+str_date);
                    // URL编码
                    str_date = URLEncoder.encode(str_date, "utf-8");
                    System.out.println("编码后:"+str_date);
                    cookie.setValue(str_date);
                    // 设置cookie的存活时间
                    cookie.setMaxAge(60*60*24*30); // 一个月
                    response.addCookie(cookie);

                    // 响应时间
                    // 获取Cookie的value 时间
                    String value = cookie.getValue();
                    System.out.println("解码前:"+value);
                    // URL解码:
                    value = URLDecoder.decode(value,"utf-8");
                    System.out.println("解码后-上一次的访问时间:"+value);
                    response.getWriter().write("<h1>欢迎回来,您上次访问时间为:"+value+"</h1>");
                    break;

                }
            }
        }

        if(cookies == null || cookies.length == 0 || !flag){
            //没有,第一次访问

            //设置Cookie的value
            //获取当前时间的字符串,重新设置Cookie的值,重新发送cookie
            Date date  = new Date();
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
            String str_date = sdf.format(date);
            System.out.println("编码前:"+str_date);
            //URL编码
            str_date = URLEncoder.encode(str_date,"utf-8");
            System.out.println("编码后:"+str_date);

            Cookie cookie = new Cookie("lastTime",str_date);
            //设置cookie的存活时间
            cookie.setMaxAge(60 * 60 * 24 * 30);//一个月
            response.addCookie(cookie);

            response.getWriter().write("<h1>您好,欢迎您首次访问</h1>");
        }
    }
}

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!