Cookie,Session

Session(会话)

会话:打开一个浏览器,点击了很多超链接,访问多个web资源,关闭浏览器。这个过程,可以称之为会话。

有状态会话:你怎么证明你是大连理工的学生?

  1. 学生证  大工给你的证明
  2. 学校登记  大工标记你是

一个网站,怎么证明你来过?

客户端    服务端

  • 服务端给客户端一个📃,客户端下次访问,带上📃即可;cookie
  • 服务端标记你来过了,下次客户端访问,匹配。Session

 

保存会话的两种技术

  1. cookie    客户端技术(响应,请求)
  2. session    服务器技术,利用这个技术,可以保存用户的会话信息。可以把信息放在Session中

cookie代码:

package com.zjy;

import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;

//保存用户上一次访问的时间
public class CookieDemo01 extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        //服务器告诉你,你来的时间,然后把这个时间封装成为一个📃,下次带来,就知道你来了
        req.setCharacterEncoding("utf-8");
        resp.setCharacterEncoding("utf-8");
        PrintWriter out = resp.getWriter();

        //Cookie,服务器端从客户端获取
        Cookie[] cookies = req.getCookies();

        //判断cookie是否存在
        if (cookies.length > 0) {
            out.println("The time that you visit this web at first time");
            for (int i = 0; i < cookies.length; i++) {
                Cookie cookie = cookies[i];
                //获得cookie的名字
                if (cookie.getName().equals("lastTime")) {
                    //获取cookie中的值
                    long l = Long.parseLong(cookie.getValue());
                    Date date = new Date(l);
                    out.print(date.toLocaleString());
                }
            }
        } else {
            out.print("This is the first time you visit web");
        }

        //服务器给客户响应cookie
        Cookie cookie = new Cookie("lastTime", String.valueOf(System.currentTimeMillis()));
        //cookie有效期为1天
        cookie.setMaxAge(24*60*60);
        resp.addCookie(cookie);
    }

    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        super.doPost(req, resp);
    }
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值