马光军--------BLOG

BlogJava 联系 聚合 管理
  1 Posts :: 25 Stories :: 5 Comments :: 0 Trackbacks
<%@ page language="java" pageEncoding="utf-8"%>
<html>
    
<head>
        
<title>My JSP 'MyJsp.jsp' starting page</title>
    
</head>
    
<body bgcolor="#FFFFFF">
        
<%
            
int counter = 0;
            
//得到所有的Cookie
            
//与其它内置对象不同,Cookie首字母大写
            Cookie cookies[] 
= request.getCookies();
            
//request对象获取Cookie
            
if (cookies != null) {
                
for (int i = 0; i < cookies.length; i++) {
                    
if (cookies[i].getName().equals("counter")){
                        counter 
= Integer.parseInt(cookies[i].getValue()) + 1;
                        System.out.println(cookies[i].getName());
                        out.println(cookies[i].getName());
                    }
                }
            }
            
// 首次登陆,需要创建Cookie;以后登陆,需更新Cookie
            Cookie c 
= new Cookie("counter""" + counter);
            c.setMaxAge(
60 * 60 * 24 * 365); //设置Cookie有效期
            response.addCookie(c);
            
//response对象添加Cookie
            
if (counter == 0){
                out.println(
"First!Welcome!");
            }
else{
                out.println(counter 
+ " times!");
            }
        
%>
    
</body>
</html>
posted on 2008-12-02 20:38 马光军 阅读(62) 评论(0)  编辑  收藏

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


网站导航: