public class Cookie
extends java.lang.Object
| Constructor and Description | 
|---|
| Cookie() | 
| Modifier and Type | Method and Description | 
|---|---|
| static java.lang.String | escape(java.lang.String string)Produce a copy of a string in which the characters '+', '%', '=', ';'
 and control characters are replaced with "%hh". | 
| static JSONObject | toJSONObject(java.lang.String string)Convert a cookie specification string into a JSONObject. | 
| static java.lang.String | toString(JSONObject jo)Convert a JSONObject into a cookie specification string. | 
| static java.lang.String | unescape(java.lang.String string)Convert  %hh sequences to single characters, and
 convert plus to space. | 
public static java.lang.String escape(java.lang.String string)
string - The source string.public static JSONObject toJSONObject(java.lang.String string) throws JSONException
string - The cookie specification string.JSONExceptionpublic static java.lang.String toString(JSONObject jo) throws JSONException
jo - A JSONObjectJSONExceptionpublic static java.lang.String unescape(java.lang.String string)
%hh sequences to single characters, and
 convert plus to space.string - A string that may contain
      + (plus) and
      %hh sequences.