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

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.text.ParseException;
  22. /**
  23.  * Convert a web browser cookie specification to a JSONObject and back.
  24.  * JSON and Cookies are both notations for name/value pairs.
  25.  * @author JSON.org
  26.  * @version 0.1
  27.  */
  28. public class Cookie {
  29.     private Cookie() {}
  30.     /**
  31.      * Produce a copy of a string in which the characters '+', '%', '=', ';'
  32.      * and control characters are replaced with "%hh". This is a gentle form
  33.      * of URL encoding, attempting to cause as little distortion to the
  34.      * string as possible. The characters '=' and ';' are meta characters in
  35.      * cookies. By convention, they are escaped using the URL-encoding. This is
  36.      * only a convention, not a standard. Often, cookies are expected to have
  37.      * encoded values. We encode '=' and ';' because we must. We encode '%' and
  38.      * '+' because they are meta characters in URL encoding.
  39.      * @param string The source string.
  40.      * @return       The escaped result.
  41.      */
  42.     public static String escape(String string) {
  43.         char         c;
  44.         String       s = string.trim();
  45.         StringBuffer sb = new StringBuffer();
  46.         int          len = s.length();
  47.         for (int i = 0; i < len; i += 1) {
  48.             c = s.charAt(i);
  49.             if (c < ' ' || c == '+' || c == '%' || c == '=' || c == ';') {
  50.                 sb.append('%');
  51.                 sb.append(Character.forDigit((char)((c >>> 4) & 0x0f), 16));
  52.                 sb.append(Character.forDigit((char)(c & 0x0f), 16));
  53.             } else {
  54.                 sb.append(c);
  55.             }
  56.         }
  57.         return sb.toString();
  58.     }
  59.     /**
  60.      * Convert a cookie specification string into a JSONObject. The string
  61.      * will contain a name value pair separated by '='. The name and the value
  62.      * will be unescaped, possibly converting '+' and '%' sequences. The
  63.      * cookie properties may follow, separated by ';', also represented as
  64.      * name=value (except the secure property, which does not have a value).
  65.      * The name will be stored under the key "name", and the value will be
  66.      * stored under the key "value". This method does not do checking or
  67.      * validation of the parameters. It only converts the cookie string into
  68.      * a JSONObject.
  69.      * @throws ParseException
  70.      * @param string The cookie specification string.
  71.      * @return A JSONObject containing "name", "value", and possibly other
  72.      *  members.
  73.      */
  74.     public static JSONObject toJSONObject(String string) throws ParseException {
  75.         String         n;
  76.         JSONObject     o = new JSONObject();
  77.         Object         v;
  78.         JSONTokener x = new JSONTokener(string);
  79.         o.put("name", x.nextTo('='));
  80.         x.next('=');
  81.         o.put("value", x.nextTo(';'));
  82.         x.next();
  83.         while (x.more()) {
  84.             n = JSONTokener.unescape(x.nextTo("=;"));
  85.             if (x.next() != '=') {
  86.                 if (n.equals("secure")) {
  87.                     v = Boolean.TRUE;
  88.                 } else {
  89.                     throw x.syntaxError("Missing '=' in cookie parameter.");
  90.                 }
  91.             } else {
  92.                 v = JSONTokener.unescape(x.nextTo(';'));
  93.                 x.next();
  94.             }
  95.             o.put(n, v);
  96.         }
  97.         return o;
  98.     }
  99.     /**
  100.      * Convert a JSONObject into a cookie specification string. The JSONObject
  101.      * must contain "name" and "value" members.
  102.      * If the JSONObject contains "expires", "domain", "path", or "secure"
  103.      * members, they will be appended to the cookie specification string.
  104.      * All other members are ignored.
  105.      * @param o A JSONObject
  106.      * @return A cookie specification string
  107.      */
  108.     public static String toString(JSONObject o) {
  109.         StringBuffer sb = new StringBuffer();
  110.         sb.append(escape(o.getString("name")));
  111.         sb.append("=");
  112.         sb.append(escape(o.getString("value")));
  113.         if (o.has("expires")) {
  114.             sb.append(";expires=");
  115.             sb.append(o.getString("expires"));
  116.         }
  117.         if (o.has("domain")) {
  118.             sb.append(";domain=");
  119.             sb.append(escape(o.getString("domain")));
  120.         }
  121.         if (o.has("path")) {
  122.             sb.append(";path=");
  123.             sb.append(escape(o.getString("path")));
  124.         }
  125.         if (o.optBoolean("secure")) {
  126.             sb.append(";secure");
  127.         }
  128.         return sb.toString();
  129.     }
  130. }