public class JSONValue extends Object
| Constructor and Description | 
|---|
JSONValue()  | 
| Modifier and Type | Method and Description | 
|---|---|
static String | 
escape(String s)
Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000
 through U+001F). 
 | 
static Object | 
parse(Reader in)
Deprecated. 
 
this method may throw an  
Error instead of returning
             null; please use
             parse(Reader) instead | 
static Object | 
parse(String s)
Deprecated. 
 
this method may throw an  
Error instead of returning
             null; please use
             parse(String) instead | 
static String | 
toJSONString(Object value)
Convert an object to JSON text. 
 | 
static void | 
writeJSONString(Object value,
               Writer out)
Encode an object into JSON text and write it to out. 
 | 
public static Object parse(Reader in)
Error instead of returning
             null; please use
             parse(Reader) insteadin - the reader where json comes fromJSONParser.parse(Reader)public static Object parse(String s)
Error instead of returning
             null; please use
             parse(String) insteads - the string of jsonJSONParser.parse(Reader)public static void writeJSONString(Object value, Writer out) throws IOException
If this object is a Map or a List, and it's also a JSONStreamAware or a JSONAware, JSONStreamAware or JSONAware will be considered firstly.
DO NOT call this method from writeJSONString(Writer) of a class that implements both JSONStreamAware and (Map or List) with "this" as the first parameter, use JSONObject.writeJSONString(Map, Writer) or JSONArray.writeJSONString(List, Writer) instead.
value - the value to writeout - where write itIOException - if failed to write into writerJSONObject.writeJSONString(Map, Writer), 
JSONArray.writeJSONString(Collection, Writer)public static String toJSONString(Object value)
If this object is a Map or a List, and it's also a JSONAware, JSONAware will be considered firstly.
DO NOT call this method from toJSONString() of a class that implements both JSONAware and Map or List with "this" as the parameter, use JSONObject.toJSONString(Map) or JSONArray.toJSONString(List) instead.
value - the object to parse to jsonJSONObject.toJSONString(Map), 
JSONArray.toJSONString(Collection)