新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇“cookie实例运用分析”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“cookie实例运用分析”文章吧。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:主机域名、网页空间、营销软件、网站建设、资源网站维护、网站推广。
/** 在服务器中的Servlet判断是否有一个名为lastTime的cookie 1. 有:不是第一次访问 1. 响应数据:欢迎回来,您上次访问时间为:2018年6月10日11:50:20 2. 写回Cookie:lastTime=2018年6月10日11:50:01 2. 没有:是第一次访问 1. 响应数据:您好,欢迎您首次访问 2. 写回Cookie:lastTime=2018年6月10日11:50:01 了解一下
URLEncoder编码和URLDecoder解码,都需要使用一个变量来接收
*/ @WebServlet("/cookieDemo") public class CookieDemo extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //设置响应的消息体的数据格式以及编码 response.setContentType("text/html;charset=utf-8"); boolean flag=false; Cookie[] cookies = request.getCookies(); if (cookies!=null&&cookies.length>0){ for (Cookie cookie : cookies) { String name = cookie.getName(); if ("lastTime".equals(name)){ //再次光临 Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss"); String str_date = sdf.format(date); str_date=URLEncoder.encode(str_date,"utf-8"); flag=true; String value = cookie.getValue(); value =URLDecoder.decode(value,"utf-8"); response.getWriter().write("再次光临,你上次登录的时间是:"+value+"
"); cookie.setValue(str_date); cookie.setMaxAge(60*60*24*30); response.addCookie(cookie); break; } } } if(cookies==null||cookies.length==0||flag==false){ //第一次 Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss"); String str_date = sdf.format(date); System.out.println("编码前:" + str_date); str_date =URLEncoder.encode(str_date,"utf-8"); System.out.println("编码后:" + str_date); Cookie cookie = new Cookie("lastTime",str_date); cookie.setMaxAge(60*60*24*30); response.addCookie(cookie); str_date =URLDecoder.decode(str_date,"utf-8"); response.getWriter().write("你好,欢迎首次登录 : "+str_date+"
"); } } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doPost(request, response); } }
以上就是关于“cookie实例运用分析”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注创新互联行业资讯频道。