java Source

            BlogJava :: 首頁(yè) :: 聯(lián)系 :: 聚合  :: 管理
            14 Posts :: 24 Stories :: 8 Comments :: 0 Trackbacks
          /*
           * CookieSupport.java
           * Copyright (C) 2007-3-19  <JustinLei@gmail.com>
           *
           *        This program is free software; you can redistribute it and/or modify
           *        it under the terms of the GNU General Public License as published by
           *      the Free Software Foundation; either version 2 of the License, or
           *     (at your option) any later version.
           *
           *       This program is distributed in the hope that it will be useful,
           *      but WITHOUT ANY WARRANTY; without even the implied warranty of
           *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
           *        GNU General Public License for more details.
           *
           
          */
          package org.lambdasoft.web.support;

          import java.util.HashMap;
          import java.util.Map;
          import java.util.Set;

          import javax.servlet.http.Cookie;
          import javax.servlet.http.HttpServletRequest;
          import javax.servlet.http.HttpServletResponse;

          import org.lambdasoft.utils.StringUtils;

          /**
           * 
          @author TangLei <justinlei@gmail.com>
           * @date 2008-12-17
           
          */
          public class CookieSupport {
              
          private CookieSupport() {
              }

              
          /**
               * 寫cookies
               * 
               * 
          @param response
               * 
          @param cookieParams
               * 
          @param maxAge
               
          */
              
          public static final void writeCookies(HttpServletResponse response,
                      Map
          <String, String> cookieParams, int maxAge) {
                  
          if (cookieParams == null || cookieParams.size() == 0)
                      
          return;
                  Set
          <String> keySet = cookieParams.keySet();
                  
          for (String key : keySet) {
                      Cookie cookie 
          = new Cookie(key, cookieParams.get(key));
                      cookie.setMaxAge(maxAge);
                      response.addCookie(cookie);
                  }
              }
              
              
          /**
               * 刪除所有的cookies
               * 
          @param request
               * 
          @param response
               
          */
              
          public static final void removeAllCookies(HttpServletRequest request,HttpServletResponse response) {
                  Cookie[] cookies 
          = request.getCookies();
                  
          if(cookies == null || cookies.length == 0)
                      
          return;
                  Map
          <String, String> cookiesMap = new HashMap<String, String>();
                  
          for (Cookie cookie : cookies) {
                      cookiesMap.put(cookie.getName(),
          "");
                  }
                  writeCookies(response, cookiesMap, 
          0);
              }
              
              
          /**
               * 讀取cookies
               * 
               * 
          @param request
               * 
          @param cookieName
               * 
          @return
               
          */
              
          public static final Cookie[] readCookies(HttpServletRequest request,String cookieName) {
                  Cookie[] cookies 
          = request.getCookies();
                  
          if(cookies == null || cookies.length == 0)
                      
          return null;
                  
          if(StringUtils.isEmpty(cookieName))
                      
          return cookies;
                  
          for (int i = 0; i < cookies.length; i++) {
                      
          if(cookies[i].getName().equals(cookieName))
                          
          return new Cookie[] {cookies[i]};
                  }
                  
          return null;
              }
          }
          posted on 2009-12-18 16:34 JustinLei 閱讀(1418) 評(píng)論(0)  編輯  收藏

          只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。


          網(wǎng)站導(dǎo)航:
           
          主站蜘蛛池模板: 巴楚县| 洮南市| 民勤县| 巴林右旗| 宁海县| 张家川| 蒙自县| 封开县| 永寿县| 蒙城县| 邵武市| 博爱县| 兴义市| 榆林市| 海晏县| 怀仁县| 洛浦县| 图片| 鹤岗市| 齐齐哈尔市| 桂平市| 金阳县| 宜城市| 万安县| 津南区| 巴东县| 青冈县| 夹江县| 南乐县| 静海县| 长汀县| 景洪市| 青阳县| 四会市| 广灵县| 衡东县| 类乌齐县| 繁昌县| 封开县| 治县。| 清镇市|