68 cookie在登录中的作用

定义一个login.jsp页面

<%@ page language="java" import="java.util.*,java.net.*" contentType="text/html; charset=utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><base href="<%=basePath%>"><title>My JSP 'index.jsp' starting page</title><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0">    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"><meta http-equiv="description" content="This is my page"><!--<link rel="stylesheet" type="text/css" href="styles.css">--></head><body><h1>用户登录</h1><hr><% request.setCharacterEncoding("utf-8");String username="";String password = "";Cookie[] cookies = request.getCookies();if(cookies!=null&&cookies.length>0){for(Cookie c:cookies){if(c.getName().equals("username")){username =  URLDecoder.decode(c.getValue(),"utf-8");}if(c.getName().equals("password")){password =  URLDecoder.decode(c.getValue(),"utf-8");}}}%><form name="loginForm" action="dologin.jsp" method="post"><table><tr><td>用户名:</td><td><input type="text" name="username" value="<%=username %>"/></td></tr><tr><td>密码:</td><td><input type="password" name="password" value="<%=password %>" /></td></tr><tr><td colspan="2"><input type="checkbox" name="isUseCookie" checked="checked"/>十天内记住我的登录状态</td></tr><tr><td colspan="2" align="center"><input type="submit" value="登录"/><input type="reset" value="取消"/></td></tr></table></form></body>
</html>

定义一个dologin的jsp页面

<%@ page language="java" import="java.util.*,java.net.*" contentType="text/html; charset=utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><base href="<%=basePath%>"><title>My JSP 'dologin.jsp' starting page</title><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0">    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"><meta http-equiv="description" content="This is my page"><!--<link rel="stylesheet" type="text/css" href="styles.css">--></head><body><h1>登录成功</h1><hr><br><br><br><% request.setCharacterEncoding("utf-8");//首先判断用户是否选择了记住登录状态String[] isUseCookies = request.getParameterValues("isUseCookie");if(isUseCookies!=null&&isUseCookies.length>0){//把用户名和密码保存在Cookie对象里面String username = URLEncoder.encode(request.getParameter("username"),"utf-8");//使用URLEncoder解决无法在Cookie当中保存中文字符串问题String password = URLEncoder.encode(request.getParameter("password"),"utf-8");Cookie usernameCookie = new Cookie("username",username);Cookie passwordCookie = new Cookie("password",password);usernameCookie.setMaxAge(864000);passwordCookie.setMaxAge(864000);//设置最大生存期限为10天response.addCookie(usernameCookie);response.addCookie(passwordCookie);}else{Cookie[] cookies = request.getCookies();if(cookies!=null&&cookies.length>0){for(Cookie c:cookies){if(c.getName().equals("username")||c.getName().equals("password")){c.setMaxAge(0); //设置Cookie失效response.addCookie(c); //重新保存。}}}}%><a href="users.jsp" target="_blank">查看用户信息</a></body>
</html>

定义一个user的jsp页面

<%@ page language="java" import="java.util.*,java.net.*" contentType="text/html; charset=utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><base href="<%=basePath%>"><title>My JSP 'users.jsp' starting page</title><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0">    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"><meta http-equiv="description" content="This is my page"><!--<link rel="stylesheet" type="text/css" href="styles.css">--></head><body><h1>用户信息</h1><hr><% request.setCharacterEncoding("utf-8");String username="";String password = "";Cookie[] cookies = request.getCookies();if(cookies!=null&&cookies.length>0){for(Cookie c:cookies){if(c.getName().equals("username")){username = URLDecoder.decode(c.getValue(),"utf-8");}if(c.getName().equals("password")){password = URLDecoder.decode(c.getValue(),"utf-8");}}}%><BR><BR><BR>用户名:<%=username %><br>密码:<%=password %><br></body>
</html>

运行结果

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/425271.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

69 session和cookie的区别

这些都是基础知识&#xff0c;不过有必要做深入了解。先简单介绍一下。 二者的定义&#xff1a; 当你在浏览网站的时候&#xff0c;WEB 服务器会先送一小小资料放在你的计算机上&#xff0c;Cookie 会帮你在网站上所打的文字或是一些选择&#xff0c;都纪录下来。当下次你再光…

[Leetcode][第120题][JAVA][三角形最小路径和][动态规划][递归]

【问题描述】[中等] 【解答思路】 1. 动态规划思路一 自上而下 第 1 步&#xff1a;设计状态 f[i][j] 表示从三角形顶部走到位置 (i,j) 的最小路径和 位置(i,j) 指的是三角形中第 i 行第 j 列&#xff08;均从 00 开始编号&#xff09;的位置 第 2 步&#xff1a;状态转移方程…

70 include指令

定义一个date的jsp <% page language"java" contentType"text/html; charsetUTF-8"pageEncoding"UTF-8"%> <p>今天的日期是: <% (new java.util.Date()).toLocaleString()%> </p> 定义一个dateFile的jsp <% page …

71 include动作

定义一个date页面 <% page language"java" contentType"text/html; charsetUTF-8"pageEncoding"UTF-8"%> <p>今天的日期是: <% (new java.util.Date()).toLocaleString()%> </p> 定义一个dateFile <% page langua…

[剑指offer]面试题第[59-2]题[JAVA][队列的最大值][暴力][双端队列]

【问题描述】[中等] 【解答思路】 1. 暴力 复杂度分析 class MaxQueue {Queue<Integer> queue new LinkedList();int maxValue;public MaxQueue() {queue new LinkedList();}public int max_value() {if(queue.isEmpty()) return -1;return maxValue;}public void …

web架构师编辑器内容-使用html2canvas获取截图,并处理一些问题

html2canvas-api 为了使用html2canvas完成截图的功能&#xff0c;我们首先先使用一个按钮来测试一下html2canvas的截图功能。 首先在页面上创建一个img标签 <img id"test-image" :style"{ width: 300px}"/>创建一个button按钮&#xff0c;添加点击…

win10安装mudbox失败,怎么强力卸载删除注册表并重新安装

一些搞设计的朋友在win10系统下安装mudbox失败或提示已安装&#xff0c;也有时候想重新安装mudbox的时候会出现本电脑windows系统已安装mudbox&#xff0c;你要是不留意直接安装mudbox&#xff0c;只会安装mudbox的附件或者直接提示失败&#xff0c;mudbox是不会安装上的。这种…

72 include动作和指令的区别

<%include...> 与<jsp:include....>指令的区别 include指令: 在翻译阶段&#xff08;将JSP页面转换成servlet的阶段&#xff09;&#xff0c;include会读入指定的页面中的内容&#xff0c;并将这些内容和原来的页面融合在一起 <% include file”header.htm…

[剑指offer]面试题第[60]题[JAVA][n个骰子的点数][动态规划][空间优化]

【问题描述】[中等] 把n个骰子扔在地上&#xff0c;所有骰子朝上一面的点数之和为s。输入n&#xff0c;打印出s的所有可能的值出现的概率。你需要用一个浮点数数组返回答案&#xff0c;其中第 i 个元素代表这 n 个骰子所能掷出的点数集合中第 i 小的那个的概率。示例 1:输入: …

[密码学基础][每个信息安全博士生应该知道的52件事][Bristol Cryptography][第50篇]什么是BLS基于Weil对的签名方案?

转载链接&#xff1a;https://www.cnblogs.com/zhuowangy2k/p/12248721.html 原文链接&#xff1a;http://bristolcrypto.blogspot.com/2015/10/52-things-number-50-what-is-bls-pairing.html

[密码学基础][每个信息安全博士生应该知道的52件事][Bristol Cryptography][第51篇]什么是基于ID的加密的安全模型,描述一个IBE方案

在公钥密码学中&#xff0c;如果Alice想要给Bob发送一条消息&#xff0c;她需要Bob的公钥&#xff0c;一般来说公钥都很长&#xff0c;就像一个随机的字符串。 假设Alice可以不用公钥而是使用Bob的名字或者邮件地址作为他的公钥。实际的来说&#xff0c;这会很方便&#xff0c…

更改配置:远程访问gitlab的postgresql数据库

作为这篇文章的补充&#xff1a; 将gitlab中的postgresql数据库开通远程访问 https://www.cnblogs.com/andy9468/p/10609682.html 替代&#xff08;二&#xff09;中的2、3、4步骤。 继续修改gitlab.rb vim /etc/gitlab/gitlab.rb postgresql[custom_pg_hba_entries] {APPLICA…

【PMP】组织结构类型

1.简单型 描述&#xff1a;人员并肩工作&#xff0c;所有者/经营者直接做出主要决定并监督执行。 PM角色&#xff1a;兼职(协调员) PM权限&#xff1a;极少(无) 项目管理人员&#xff1a;极少(无) 资源可用性&#xff1a;极少(无) 项目预算管理人&#xff1a;负责人 2.职能型组…

[Leetcode][第96题][JAVA][不同的二叉搜索树][动态规划][数学]

【问题描述】[中等] 【解答思路】 1. 动态规划 第 1 步&#xff1a;设计状态 第 2 步&#xff1a;状态转移方程 第 3 步&#xff1a;考虑初始化 第 4 步&#xff1a;考虑输出 时间复杂度&#xff1a;O(N^2) 空间复杂度&#xff1a;O(N) public int numTrees(int n) {…

[剑指offer]面试题第[61]题[JAVA][扑克牌中的点数][HashSet][数组]

【问题描述】[简单] 【解答思路】 1. 集合 Set 遍历 时间复杂度&#xff1a;O(N) 空间复杂度&#xff1a;O(N) class Solution {public boolean isStraight(int[] nums) {Set<Integer> repeat new HashSet<>();int max 0, min 14;for(int num : nums) {if(nu…

[剑指offer]面试题第[65]题[JAVA][不用加减乘除做加法][位运算]

【问题描述】[简单] 【解答思路】 1. 位运算 时间复杂度&#xff1a;O(1) 空间复杂度&#xff1a;O(1) public int add(int a, int b) {while(b ! 0) { // 当进位为 0 时跳出int c (a & b) << 1; // c 进位a ^ b; // a 非进位和b c; // b 进位}return a;}【…

2018蓝桥模拟赛·天上的星星 暴力|二维树状数组

在一个星光摧残的夜晚&#xff0c;蒜头君一颗一颗的数这天上的星星。蒜头君给在天上巧妙的画了一个直角坐标系&#xff0c;让所有的星星都分布在第一象。天上有 nn 颗星星&#xff0c;他能知道每一颗星星的坐标和亮度。现在&#xff0c;蒜头君问自己 qq 次&#xff0c;每次他问…

VS2010主题设置及插件推荐

本文主要写了个人使用 VS2010 的一些配置及实用插件&#xff0c;从而打造一个符合个人风格的开发环境。 基础设置 安装 Visual Assist X 在 VS2010 中若不安装 Visual Assist X 这个插件&#xff0c;直接开发 C 相关的项目将是非常痛苦的事情。默认环境没有对代码的不同部分进行…

[Leetcode][第785题][JAVA][判断二分图][BFS][DFS]

【问题描述】[中等] 【解答思路】 1. DFS 深度优先遍历 时间复杂度&#xff1a;O(NM) 空间复杂度&#xff1a;O(N) class Solution {private static final int UNCOLORED 0;private static final int RED 1;private static final int GREEN 2;private int[] color;privat…

[剑指offer]面试题第[68-2]题[Leetcode][第236题][JAVA][二叉搜索树的最近公共祖先][递归]

【问题描述】[中等] 235/68-1 搜索二叉树 236/68-2 二叉树 【解答思路】 递归 时间复杂度&#xff1a;O(N) 空间复杂度&#xff1a;O(N) 情况 1. , 2. , 3. , 4. 的展开写法如下。 class Solution {public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, Tr…