CookieList.java
上传用户:shen332233
上传日期:2021-09-03
资源大小:7478k
文件大小:3k
源码类别:

Ajax

开发平台:

Java

  1. package org.json;
  2. /*
  3. Copyright (c) 2002 JSON.org
  4. Permission is hereby granted, free of charge, to any person obtaining a copy 
  5. of this software and associated documentation files (the "Software"), to deal 
  6. in the Software without restriction, including without limitation the rights 
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
  8. copies of the Software, and to permit persons to whom the Software is 
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all 
  11. copies or substantial portions of the Software.
  12. The Software shall be used for Good, not Evil.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
  16. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
  17. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
  18. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
  19. SOFTWARE.
  20. */
  21. import java.util.Iterator;
  22. import java.text.ParseException;
  23. /**
  24.  * Convert a web browser cookie list string to a JSONObject and back.
  25.  * @author JSON.org
  26.  * @version 0.1
  27.  */
  28. public class CookieList {
  29.     private CookieList() {}
  30.     /**
  31.      * Convert a cookie list into a JSONObject. A cookie list is a sequence
  32.      * of name/value pairs. The names are separated from the values by '='.
  33.      * The pairs are separated by ';'. The names and the values
  34.      * will be unescaped, possibly converting '+' and '%' sequences.
  35.      *
  36.      * To add a cookie to a cooklist,
  37.      * cookielistJSONObject.put(cookieJSONObject.getString("name"),
  38.      *     cookieJSONObject.getString("value"));
  39.      * @param string  A cookie list string
  40.      * @return A JSONObject
  41.      * @throws ParseException
  42.      */
  43.     public static JSONObject toJSONObject(String string)
  44.             throws ParseException {
  45.         JSONObject o = new JSONObject();
  46.         JSONTokener x = new JSONTokener(string);
  47.         while (x.more()) {
  48.             String name = JSONTokener.unescape(x.nextTo('='));
  49.             x.next('=');
  50.             o.put(name, JSONTokener.unescape(x.nextTo(';')));
  51.             x.next();
  52.         }
  53.         return o;
  54.     }
  55.     /**
  56.      * Convert a JSONObject into a cookie list. A cookie list is a sequence
  57.      * of name/value pairs. The names are separated from the values by '='.
  58.      * The pairs are separated by ';'. The characters '%', '+', '=', and ';'
  59.      * in the names and values are replaced by "%hh".
  60.      * @param o A JSONObject
  61.      * @return A cookie list string
  62.      */
  63.     public static String toString(JSONObject o) {
  64.         boolean      b = false;
  65.         Iterator     keys = o.keys();
  66.         String       s;
  67.         StringBuffer sb = new StringBuffer();
  68.         while (keys.hasNext()) {
  69.             s = keys.next().toString();
  70.             if (!o.isNull(s)) {
  71.                 if (b) {
  72.                     sb.append(';');
  73.                 }
  74.                 sb.append(Cookie.escape(s));
  75.                 sb.append("=");
  76.                 sb.append(Cookie.escape(o.getString(s)));
  77.                 b = true;
  78.             }
  79.         }
  80.         return sb.toString();
  81.     }
  82. }