Package org.json.simple
Class JSONValue
java.lang.Object
org.json.simple.JSONValue
Deprecated.
- Author:
- FangYidong<fangyidong@yahoo.com.cn>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic String
Deprecated.Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).static Object
Deprecated.this method may throw anError
instead of returningnull
; please useparseWithException(Reader)
insteadstatic Object
Deprecated.this method may throw anError
instead of returningnull
; please useparseWithException(String)
insteadstatic Object
Deprecated.Parse JSON text into java object from the input source.static Object
Deprecated.description omitted.static String
toJSONString
(Object value) Deprecated.Convert an object to JSON text.static void
writeJSONString
(Object value, Writer out) Deprecated.Encode an object into JSON text and write it to out.
-
Constructor Details
-
JSONValue
public JSONValue()Deprecated.
-
-
Method Details
-
parse
Deprecated.this method may throw anError
instead of returningnull
; please useparseWithException(Reader)
insteadParse JSON text into java object from the input source. Please use parseWithException() if you don't want to ignore the exception.- Parameters:
in
- description omitted.- Returns:
- Instance of the following: org.json.simple.JSONObject, org.json.simple.JSONArray, java.lang.String, java.lang.Number, java.lang.Boolean, null
- See Also:
-
parse
Deprecated.this method may throw anError
instead of returningnull
; please useparseWithException(String)
insteadParse JSON text into java object from the given string. Please use parseWithException() if you don't want to ignore the exception.- Parameters:
s
- description omitted.- Returns:
- Instance of the following: org.json.simple.JSONObject, org.json.simple.JSONArray, java.lang.String, java.lang.Number, java.lang.Boolean, null
- See Also:
-
parseWithException
Deprecated.Parse JSON text into java object from the input source.- Parameters:
in
- description omitted.- Returns:
- Instance of the following: org.json.simple.JSONObject, org.json.simple.JSONArray, java.lang.String, java.lang.Number, java.lang.Boolean, null
- Throws:
IOException
- description omitted.ParseException
- description omitted.- See Also:
-
parseWithException
Deprecated.description omitted.- Parameters:
s
- description omitted.- Returns:
- description omitted.
- Throws:
ParseException
- description omitted.
-
writeJSONString
Deprecated.Encode an object into JSON text and write it to out.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.
- Parameters:
value
- description omitted.out
- description omitted.- Throws:
IOException
- description omitted.- See Also:
-
toJSONString
Deprecated.Convert an object to JSON text.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.
- Parameters:
value
- description omitted.- Returns:
- JSON text, or "null" if value is null or it's an NaN or an INF number.
- See Also:
-
escape
Deprecated.Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).- Parameters:
s
- description omitted.- Returns:
- description omitted.
-
Jsoner