java中cookie操作详细_JSP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:java图片处理类(图片水印,图片缩放)
可实现以下常用功能:缩放图像、切割图像、图像类型转换、彩色转黑白、文字水

1.设置Cookie

 代码如下 
Cookie cookie = new Cookie("key", "value");

  cookie.setMaxAge(60);
 

  设置60秒生存期,如果设置为负值的话,则为浏览器进程Cookie(内存中保存),关闭浏览器就失效。

 代码如下

  cookie.setPath("/test/test2");
 

  设置Cookie路径,不设置的话为当前路径(对于Servlet来说为request.getContextPath() + web.xml里配置的该Servlet的url-pattern路径部分) 。

 代码如下 
response.addCookie(cookie);
 

  2.读取Cookie

  该方法可以读取当前路径以及“直接父路径”的所有Cookie对象,如果没有任何Cookie的话,则返回null。

 

 代码如下

 Cookie[] cookies = request.getCookies(); 

  3.删除Cookie

 代码如下 
Cookie cookie = new Cookie("key", null);

  cookie.setMaxAge(0);
 

  设置为0为立即删除该Cookie;

 代码如下 
cookie.setPath("/test/test2");
 

  删除指定路径上的Cookie,不设置该路径,默认为删除当前路径Cookie;

  

 代码如下 response.addCookie(cookie); 

下面用一个完整的实例来说明

 

 代码如下 
<%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.3lian.com/">
<html xmlns="http://www.3lian.com/">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>

<body>
<%
    String username = null;
    Cookie[] cookies = request.getCookies();
    if(cookies!=null)
    {
        for(int i=0;i<cookies.length;i++)
        {
            if("cookies_user".equals(cookies[i].getName()))
            {
                username = cookies[i].getValue();//cookies_user}
        }
       
        if("onepc".equals(username))
        {
            out.println("Hello");
        }else
        {
        %>
       
<table width="302" border="1">
  <form id="form1" name="form1" method="post" action="clogin.jsp">
  <tr>

    <td width="79"><div align="center"></div></td>
    <td width="207"><input type="text" name="user" id="user" /></td>
  </tr>
  <tr>
    <td><div align="center"></div></td>
    <td><input type="text" name="textfield2" id="textfield2" /></td>
  </tr>
  <tr>
    <td><div align="center">     
    </div></td>
    <td><select name="select" id="select">
      <option value="31536000">one year</option>
      <option value="120">two min</option>
      </select></td>
  </tr>
  <tr>
    <td colspan="2"><label>
      <input type="submit" name="button" id="button" value="" />
    </label></td>

  </tr>
      </form>
</table>

        <%
        }
   
    }

%>


</body>
</html>
 


login.jsp

 代码如下

<%
    String user = request.getParameter("user");
    Cookie cookie = new Cookie("cookies_user",user);
    cookie.setMaxAge(120);
    response.addCookie(cookie);
    response.sendRedirect("cindex.jsp");

%>
 


4.注意:假设路径结构如下

  

 代码如下 
test/test2/test345/test555/test666 

  a.相同键名的Cookie(值可以相同或不同)可以存在于不同的路径下。

分享:jsp switch语句的用法
如果希望选择执行若干代码块中的一个,你可以使用switch语句: 语法: switch(n) { case 1: 执行代码块 1 break case 2: 执行代码块 2 break default: 如果n即不是1也不是2,则执行此代码 } 工作原理:switch后面的(n)可以是表达式,也可以(并通常)是变量。然后表达

共2页上一页12下一页
来源:模板无忧//所属分类:JSP教程/更新时间:2013-04-17
相关JSP教程