博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cookie基本用法
阅读量:6033 次
发布时间:2019-06-20

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

hot3.png

222906_JCxt_2693731.png

222906_OCVz_2693731.png

public void doGet(HttpServletRequest request, HttpServletResponse response)			throws ServletException, IOException {		response.setContentType("text/html;charset=utf-8");				Cookie []  cs = request.getCookies();		Cookie findC = null;		if(cs!=null){			for(Cookie c : cs){				if("lastTime".equals(c.getName())){					findC = c;				} 			}		}		if(findC == null){			response.getWriter().write("您是第一次访问本网站!");		}else{			Long lastTime = Long.parseLong(findC.getValue());			response.getWriter().write("您上次访问时间是:"+new Date(lastTime).toLocaleString());		}				Date date = new Date();		Cookie c = new Cookie("lastTime",date.getTime()+"");		c.setMaxAge(3600*24*30);		c.setPath(request.getContextPath());		response.addCookie(c);	}

转载于:https://my.oschina.net/zqwang121/blog/651892

你可能感兴趣的文章