JSP设置和获取Cookie源码
Posted chiedboy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSP设置和获取Cookie源码相关的知识,希望对你有一定的参考价值。
将内容过程经常用的内容珍藏起来,如下内容是关于JSP设置和获取Cookie的内容。
<%@ page contentType=“text/html;charset=gb2312″%>
<%@ page isELIgnored=“false” %>
<html>
<head>
<title>response测试3-1</title>
</head>
<body>
姓名:<%=request.getParameter(“username”) %><br>
年龄:<%=request.getParameter(“age”) %><br>
<%
String username = request.getParameter(“username”);
String age = request.getParameter(“age”);
Cookie c1 = new Cookie(“username”,username);
Cookie c2 = new Cookie(“age”,age);
response.addCookie(c1);
response.addCookie(c2);
%>
</body>
</html>
获取cookie的jsp页面
<%@ page contentType=“text/html;charset=gb2312″%>
<%@ page isELIgnored=“false” %>
<html>
<head>
<title>response测试3-2</title>
</head>
<body>
<%
Cookie[] cookies = request.getCookies();
for(Cookie c:cookies)
out.println(c.getName()+” “+c.getValue()+”<br>”);
%>
</body>
</html>
以上是关于JSP设置和获取Cookie源码的主要内容,如果未能解决你的问题,请参考以下文章
基于JSP+Servlet开发二手交易购物商城网站 源码 B
JavaWeb jsp+servlet学生宿舍管理系统001(源码+sql文件可运行《精品毕设》)主要功能:不同角色登录宿舍管理员管理学生信息管理宿舍信息管理学生缺勤管理修改密码和退出功能