Javaweb 会话跟踪学习记录(1)—Cookie,2024年最新牧原网上面试一般等几天

先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7

深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上Java开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以添加V获取:vip1024b (备注Java)
img

正文

out.println(“属性名:” + c.getName());

out.println(“属性值” + c.getValue());

}

9.Cookie 的存活时间

  • Cookie 有一定的存活时间,不会在客户端一直保存 。

  • 默认情况下,Cookie 保存在浏览器内存中,在浏览器关闭时失效,这种 Cookie 也称为临时 Cookie ( 或会话 Cookie )

  • 若要使Cookie 较长时间的保存在磁盘上,可以通过 Cookie 对象的setMaxAge() 方法设置其存活时间 ,保存在磁盘上的 Cookie 也称为持久Cookie 。

  • Cookie 对象可以通过 setMaxAge () 方法设置其存活时间 , 时间以秒为单位 :

(1)时间若为正整数,表示其存活的秒数;

(2)时间若为负数 , 表示其为临时Cookie;

(3)时间若为0,表示通知浏览器删除相应的 Cookie 。

示例:设置存活 时间为1 周的持久CookieunameCookie.setMaxAge (7*24*60*60); // 参数以秒为基本单位

10.演示

创建writeCookie.jsp

<%@ page language=“java” contentType=“text/html; charset=UTF-8”

pageEncoding=“UTF-8”%>

Insert title here

<%

//创建cookie

Cookie cookie = new Cookie(“cookey”, “cookieValue”);

//cookie.setPath(“/classDemo04/jsp/”);

//cookie.setPath(“/”);

//保存cookie

cookie.setMaxAge(20);

response.addCookie(cookie);

%>

读取cookie

创建readCookie.jsp

<%@ page language=“java” contentType=“text/html; charset=UTF-8”

pageEncoding=“UTF-8”%>

Insert title here

<%

String value = null;

//读取cookie列表

Cookie[] cookies = request.getCookies();

if (cookies != null) {

for (Cookie cook : cookies) {

if (“cookey”.equals(cook.getName())) {

value = cook.getValue();

}

}

if (value != null) {

out.print(value);

} else {

out.print(“没有指定的cookie”);

}

} else {

out.print(“第一次访问,无cookie对象”);

}

%>

运行readCookie

在这里插入图片描述

运行writeCookie

在这里插入图片描述

在这里插入图片描述

Cookie技术的应用:

创建CookieExampleServlet

package com;

import java.io.IOException;

import java.io.PrintWriter;

import java.text.SimpleDateFormat;

import java.util.Date;

import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.Cookie;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

/**

  • Servlet implementation class CookieExampleServlet

*/

@WebServlet(“/CookieExampleServlet”)

public class CookieExampleServlet extends HttpServlet {

private static final long serialVersionUID = 1L;

/**

  • @see HttpServlet#HttpServlet()

*/

public CookieExampleServlet() {

super();

// TODO Auto-generated constructor stub

}

/**

  • @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse

  •  response)
    

*/

protected void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

response.setContentType(“text/html;charset=utf-8”);

PrintWriter out = response.getWriter();

Date date = new Date();

SimpleDateFormat sdf = new SimpleDateFormat(“yyyy-MM-dd==HH:mm:ss”);

String nowTime = sdf.format(date);

String lastVisitTime = “”;

int visitCount = 0;

Cookie[] cookies = request.getCookies();

if (cookies != null) {

for (Cookie cookie : cookies) {

if (“lastVisitTime”.equals(cookie.getName())) {

lastVisitTime = cookie.getValue();

}

if (“visitCount”.equals(cookie.getName())) {

visitCount = Integer.parseInt(cookie.getValue());

}

}

}

// 非第一次访问

if (!“”.equals(lastVisitTime) && visitCount != 0) {

out.print(“您上次访问的时间为:” + lastVisitTime + “
”);

out.print(“您是第” + (visitCount + 1) + “次访问”);

} else {

out.print(“您是第1次访问”);

}

// 创建并保存相应记录cookie

Cookie lastVisitTimeCook = new Cookie(“lastVisitTime”, nowTime);

Cookie visitCountCook = new Cookie(“visitCount”, String.valueOf(visitCount + 1));

response.addCookie(lastVisitTimeCook);

response.addCookie(visitCountCook);

out.flush();

out.close();

}

/**

  • @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse

  •  response)
    

*/

protected void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

// TODO Auto-generated method stub

doGet(request, response);

}

}

运行

在这里插入图片描述

在这里插入图片描述

页面保存登陆账号密码小功能:

创建LoginServlet

package com;

import java.io.IOException;

import java.io.PrintWriter;

import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.Cookie;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

/**

  • Servlet implementation class LoginServlet

*/

@WebServlet(“/LoginServlet”)

public class LoginServlet extends HttpServlet {

private static final long serialVersionUID = 1L;

/**

  • @see HttpServlet#HttpServlet()

*/

public LoginServlet() {

super();

// TODO Auto-generated constructor stub

}

/**

  • @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse

  •  response)
    

*/

protected void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

response.setContentType(“text/html;charset=utf-8”);

PrintWriter out = response.getWriter();

String cookName = “”;

String cookPassword = “”;

String isSave = “”;

int count = 0;

Cookie[] cookies = request.getCookies();

if (cookies != null) {

for (Cookie cookie : cookies) {

if (“userName”.equals(cookie.getName())) {

cookName = cookie.getValue();

count++;

}

if (“userPassword”.equals(cookie.getName())) {

cookPassword = cookie.getValue();

count++;

}

}

}

if (count == 2) {

isSave = “checked”;

}

out.print(“”);

out.print(“登录”);

out.print(“”);

out.print(“

”);

out.print(“”);

out.print(“用户名:
”);

Java高频面试专题合集解析:

阿里Java岗面试百题:Spring 缓存 JVM 微服务 数据库 RabbitMQ等

当然在这还有更多整理总结的Java进阶学习笔记和面试题未展示,其中囊括了Dubbo、Redis、Netty、zookeeper、Spring cloud、分布式、高并发等架构资料和完整的Java架构学习进阶导图!

阿里Java岗面试百题:Spring 缓存 JVM 微服务 数据库 RabbitMQ等

更多Java架构进阶资料展示

阿里Java岗面试百题:Spring 缓存 JVM 微服务 数据库 RabbitMQ等

阿里Java岗面试百题:Spring 缓存 JVM 微服务 数据库 RabbitMQ等

阿里Java岗面试百题:Spring 缓存 JVM 微服务 数据库 RabbitMQ等

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip1024b (备注Java)
img

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
a进阶学习笔记和面试题未展示,其中囊括了Dubbo、Redis、Netty、zookeeper、Spring cloud、分布式、高并发等架构资料和完整的Java架构学习进阶导图!

[外链图片转存中…(img-scI0nMWI-1713409379459)]

更多Java架构进阶资料展示

[外链图片转存中…(img-n7nQnyUj-1713409379459)]

[外链图片转存中…(img-GFaNoQeu-1713409379460)]

[外链图片转存中…(img-sI336t7O-1713409379460)]

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip1024b (备注Java)
[外链图片转存中…(img-vAomdfp0-1713409379460)]

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值