posts - 495,comments - 227,trackbacks - 0
<2006年3月>
2627281234
567891011
12131415161718
19202122232425
2627282930311
2345678

常用链接

留言簿(46)

随笔分类(476)

随笔档案(495)

最新随笔

搜索

  •  

积分与排名

  • 积分 - 1392454
  • 排名 - 16

最新评论

阅读排行榜

评论排行榜

写Cookie

     Cookie cookie = new  Cookie( " info " ,info);
     cookie.setMaxAge( 1000 );
     cookie.setPath( " / " );
     cookie.setDomain( " duxiu.com " );
     response.addCookie(cookie); 



*****************************************
读Cookie

    String info  =   " info " ;
    Cookie[]cookie  =  request.getCookies();
    Cookie cookie_request = null ;
    List list  = Arrays.asList(cookie);
    Iterator it = list.iterator();
     while (it.hasNext())
     {
     Cookie temp = (Cookie)it.next();
      if (temp.getName().equals(info))
     {
      cookie_request=temp;
      break;
    } 

    } 

    info = cookie_request.getValue();
  
posted on 2006-03-30 16:27 SIMONE 阅读(318) 评论(0)  编辑  收藏 所属分类: JSP

只有注册用户登录后才能发表评论。


网站导航: