博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java_Cookies_1_商品浏览历史记录servlet2
阅读量:6237 次
发布时间:2019-06-22

本文共 1990 字,大约阅读时间需要 6 分钟。

public class CookiesServlet2 extends HttpServlet {	// 显示商品详细信息	public void doGet(HttpServletRequest request, HttpServletResponse response)			throws ServletException, IOException {		response.setCharacterEncoding("UTF-8");		response.setContentType("text/html;charset=UTF-8");		PrintWriter out = response.getWriter();		// 根据用户带过来的id,显示相应商品的详细信息		String id = request.getParameter("id");		Book book = (Book) Db.getAll().get(id);		out.write(book.getId() + "
"); out.write(book.getName() + "
"); out.write(book.getAuthor() + "
"); out.write(book.getDescription() + "
"); // 构建Cooikes回写给浏览器 String cookieValue = buildCookie(id, request); Cookie cookie = new Cookie("bookHistory", cookieValue); cookie.setMaxAge(1 * 30 * 24 * 60 * 60); cookie.setPath("/NANA"); response.addCookie(cookie); } private String buildCookie(String id, HttpServletRequest request) { // if none cookie, bookHistory=null, cookie value =1 // if contain cookie,bookHistory=2,5,1 return 1 2 5 // cookieHistory=2,5,4 browns 1 return 1,2,5 到了列表最大值 // cookieHistory=2,5 browns 1 return 1,2,5 没到最大值 String bookHistory = null; Cookie cookies[] = request.getCookies(); for (int i = 0; cookies != null && i < cookies.length; i++) { if (cookies[i].getName().equals("bookHistory")) { bookHistory = cookies[i].getValue(); } } if (bookHistory == null) { return id; } LinkedList
list = new LinkedList
( Arrays.asList(bookHistory.split("\\,"))); if (list.contains(id)) { list.remove(id); list.addFirst(id); } else { if (list.size() >= 3) { list.removeLast(); list.addFirst(id); } else { list.addFirst(id); } } StringBuffer sb = new StringBuffer(); for(String bid:list){ sb.append(bid+","); } return sb.deleteCharAt(sb.length()-1).toString(); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); }}

转载于:https://www.cnblogs.com/MarchThree/p/3720430.html

你可能感兴趣的文章
浏览器: Internet Explorer 7 快捷键
查看>>
【Exchange 2019 設置技巧】修改默認附件大小
查看>>
Centos 6.9中 http-2.2 中的一些基本操作和 https 的实现
查看>>
使用QueryTables生成Excel数据时发生错误
查看>>
活动目录实战之十 多台windows 2003 活动目录至win 2008 r2迁移实战
查看>>
我比我的领导差在哪
查看>>
Spring学习笔记二
查看>>
centos自带的日志切割工具 --- logrotate
查看>>
Java中final和static关键字总结
查看>>
一个故障印发的醒悟
查看>>
vim的日常操作方法
查看>>
Windows7系统安装Oracle数据库图文教程详解
查看>>
我的友情链接
查看>>
文本统计命令——wc
查看>>
mina2.0
查看>>
JEESZ简介
查看>>
Linux中通过/proc/stat等文件计算Cpu使用率(一)
查看>>
Centos6.5下利用rsyslog+loganalyzer+mysql部署日志服务器
查看>>
Linux查看硬件信息的一些命令
查看>>
基于VMware vSphere 5.0的服务器虚拟化实践(2)
查看>>