您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > JSP >

jsp中cookies的使用以及代码实例

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-02 03:29 点击:
下面是一个jsp中cookies的使用实例代码
  1. <%@page contentType="text/html" pageEncoding="GBK"%>  
     <%@page import="javax.servlet.http.Cookie,java.util.*"%>  
       
     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   
        "http://www.w3.org/TR/html4/loose.dtd">  
       
     <html>  
         <head>  
             <meta http-equiv="Content-Type" content="text/html; charset=GBK">  
             <title>JSP Page</title>  
         </head>  
         <body>  
             <%   
                 //String CookiesName="username";   
                 //Cookie cookie_username=new Cookie("username",CookiesName);   
                 //response.addCookie(cookie_username);   
                 int click=0;   
       
                 Cookie[] cookies=request.getCookies();   
                 Cookie cookie_reponse=null;   
                 List list=Arrays.asList(cookies);   
                 Iterator it=list.iterator();   
                 while(it.hasNext()){   
                     Cookie temp=(Cookie)it.next();   
                      if(temp.getName().equals("clicktimes")){   
                        click=Integer.parseInt(temp.getValue());   
                          cookie_reponse=temp;   
                          break;   
                     }   
                 }   
                 //取得了click的值   
       
                 //输出   
                 out.println("第 " click " 次刷新");   
       
                 //更新   
                 clickclick=click 1;   
                  if(cookie_reponse==null){   
                     //空的   
                     cookie_reponse=new Cookie("clicktimes", String.valueOf(click));   
                  }else{   

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • JSP与Servlet
      • 自己动手写MiniBBS系列(基本篇)之用户登录
      • JSP取当前日期
      • JDBC 入门(一)
      • 打开一个jsp页面默认查询所有数据,调用action
      • 使用JSP标签库验证用户的输入(2)完
      • 自定义JSP标签(tag)浅议
      • WIN98/2000下的jsp服务器
      • JSP内建对象(二)
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1