Class JSONObject
JSONObjects, JSONArrays, Strings,
Booleans, Integers, Longs, Doubles or NULL. Values may not be null,
NaNs, infinities, or of any type not
listed here.
This class can coerce values to another type when requested.
- When the requested type is a boolean, strings will be coerced using a case-insensitive comparison to "true" and "false".
- When the requested type is a double, other
Numbertypes will be coerced usingdoubleValue. Strings that can be coerced usingDouble.valueOf(String)will be. - When the requested type is an int, other
Numbertypes will be coerced usingintValue. Strings that can be coerced usingDouble.valueOf(String)will be, and then cast to int. - When the requested type is a long, other
Numbertypes will be coerced usinglongValue. Strings that can be coerced usingDouble.valueOf(String)will be, and then cast to long. This two-step conversion is lossy for very large values. For example, the string "9223372036854775806" yields the long 9223372036854775807. - When the requested type is a String, other non-null values will be coerced using
String.valueOf(Object). Although null cannot be coerced, the sentinel valueNULLis coerced to the string "null".
This class can look up both mandatory and optional values:
- Use
getType()to retrieve a mandatory value. This fails with aJSONExceptionif the requested name has no value or if the value cannot be coerced to the requested type. - Use
optType()to retrieve an optional value. This returns a system- or user-supplied default if the requested name has no value or if the value cannot be coerced to the requested type.
Warning: this class represents null in two incompatible ways: the
standard Java null reference, and the sentinel value NULL.
In particular, calling put(name, null) removes the named entry from the object
but put(name, JSONObject.NULL) stores an entry whose value is
JSONObject.NULL.
Instances of this class are not thread safe. Although this class is nonfinal, it was not designed for inheritance and should not be subclassed. In particular, self-use by overrideable methods is not specified. See Effective Java Item 17, "Design and Document or inheritance or else prohibit it" for further information.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates aJSONObjectwith no name/value mappings.JSONObject(String json) Creates a newJSONObjectwith name/value mappings from the JSON string.JSONObject(Map copyFrom) Creates a newJSONObjectby copying all name/value mappings from the given map.JSONObject(JSONObject copyFrom, String[] names) Creates a newJSONObjectby copying mappings for the listed names from the given object.JSONObject(JSONTokener readFrom) Creates a newJSONObjectwith name/value mappings from the next object in the tokener. -
Method Summary
Modifier and TypeMethodDescriptionaccumulate(String name, Object value) Appendsvalueto the array already mapped toname.Returns the value mapped byname.booleangetBoolean(String name) Returns the value mapped bynameif it exists and is a boolean or can be coerced to a boolean.doubleReturns the value mapped bynameif it exists and is a double or can be coerced to a double.intReturns the value mapped bynameif it exists and is an int or can be coerced to an int.getJSONArray(String name) Returns the value mapped bynameif it exists and is aJSONArray.getJSONObject(String name) Returns the value mapped bynameif it exists and is aJSONObject.longReturns the value mapped bynameif it exists and is a long or can be coerced to a long.Returns the value mapped bynameif it exists, coercing it if necessary.booleanReturns true if this object has a mapping forname.booleanReturns true if this object has no mapping fornameor if it has a mapping whose value isNULL.keys()Returns an iterator of theStringnames in this object.intlength()Returns the number of name/value mappings in this object.names()Returns an array containing the string names in this object.static StringnumberToString(Number number) Encodes the number as a JSON string.Returns the value mapped byname, or null if no such mapping exists.booleanoptBoolean(String name) Returns the value mapped bynameif it exists and is a boolean or can be coerced to a boolean.booleanoptBoolean(String name, boolean fallback) Returns the value mapped bynameif it exists and is a boolean or can be coerced to a boolean.doubleReturns the value mapped bynameif it exists and is a double or can be coerced to a double.doubleReturns the value mapped bynameif it exists and is a double or can be coerced to a double.intReturns the value mapped bynameif it exists and is an int or can be coerced to an int.intReturns the value mapped bynameif it exists and is an int or can be coerced to an int.optJSONArray(String name) Returns the value mapped bynameif it exists and is aJSONArray.optJSONObject(String name) Returns the value mapped bynameif it exists and is aJSONObject.longReturns the value mapped bynameif it exists and is a long or can be coerced to a long.longReturns the value mapped bynameif it exists and is a long or can be coerced to a long.Returns the value mapped bynameif it exists, coercing it if necessary.Returns the value mapped bynameif it exists, coercing it if necessary.Mapsnametovalue, clobbering any existing name/value mapping with the same name.Mapsnametovalue, clobbering any existing name/value mapping with the same name.Mapsnametovalue, clobbering any existing name/value mapping with the same name.Mapsnametovalue, clobbering any existing name/value mapping with the same name.Mapsnametovalue, clobbering any existing name/value mapping with the same name.Equivalent toput(name, value)when both parameters are non-null; does nothing otherwise.static StringEncodesdataas a JSON string.Removes the named mapping if it exists; does nothing otherwise.toJSONArray(JSONArray names) Returns an array with the values corresponding tonames.toString()Encodes this object as a compact JSON string, such as:toString(int indentSpaces) Encodes this object as a human-readable JSON string for debugging, such as:static ObjectWraps the given object if necessary.
-
Field Details
-
NULL
A sentinel value used to explicitly define a name with no value. Unlikenull, names with this value:- show up in the
names()array - show up in the
keys()iterator - return
trueforhas(String) - do not throw on
get(String) - are included in the encoded JSON string.
This value violates the general contract of
Object.equals(Object)by returning true when compared tonull. ItstoString()method returns "null". - show up in the
-
-
Constructor Details
-
JSONObject
public JSONObject()Creates aJSONObjectwith no name/value mappings. -
JSONObject
Creates a newJSONObjectby copying all name/value mappings from the given map.- Parameters:
copyFrom- a map whose keys are of typeStringand whose values are of supported types.- Throws:
NullPointerException- if any of the map's keys are null.
-
JSONObject
Creates a newJSONObjectwith name/value mappings from the next object in the tokener.- Parameters:
readFrom- a tokener whose nextValue() method will yield aJSONObject.- Throws:
JSONException- if the parse fails or doesn't yield aJSONObject.
-
JSONObject
Creates a newJSONObjectwith name/value mappings from the JSON string.- Parameters:
json- a JSON-encoded string containing an object.- Throws:
JSONException- if the parse fails or doesn't yield aJSONObject.
-
JSONObject
Creates a newJSONObjectby copying mappings for the listed names from the given object. Names that aren't present incopyFromwill be skipped.- Parameters:
copyFrom- the sourcenames- the property names- Throws:
JSONException- if an error occurs
-
-
Method Details
-
length
public int length()Returns the number of name/value mappings in this object.- Returns:
- the number of name/value mappings in this object
-
put
Mapsnametovalue, clobbering any existing name/value mapping with the same name.- Parameters:
name- the name of the propertyvalue- the value of the property- Returns:
- this object.
- Throws:
JSONException- if an error occurs
-
put
Mapsnametovalue, clobbering any existing name/value mapping with the same name.- Parameters:
name- the name of the propertyvalue- a finite value. May not beNaNsorinfinities.- Returns:
- this object.
- Throws:
JSONException- if an error occurs
-
put
Mapsnametovalue, clobbering any existing name/value mapping with the same name.- Parameters:
name- the name of the propertyvalue- the value of the property- Returns:
- this object.
- Throws:
JSONException- if an error occurs
-
put
Mapsnametovalue, clobbering any existing name/value mapping with the same name.- Parameters:
name- the name of the propertyvalue- the value of the property- Returns:
- this object.
- Throws:
JSONException- if an error occurs
-
put
Mapsnametovalue, clobbering any existing name/value mapping with the same name. If the value isnull, any existing mapping fornameis removed.- Parameters:
name- the name of the propertyvalue- aJSONObject,JSONArray, String, Boolean, Integer, Long, Double,NULL, ornull. May not beNaNsorinfinities.- Returns:
- this object.
- Throws:
JSONException- if an error occurs
-
putOpt
Equivalent toput(name, value)when both parameters are non-null; does nothing otherwise.- Parameters:
name- the name of the propertyvalue- the value of the property- Returns:
- this object.
- Throws:
JSONException- if an error occurs
-
accumulate
Appendsvalueto the array already mapped toname. If this object has no mapping forname, this inserts a new mapping. If the mapping exists but its value is not an array, the existing and new values are inserted in order into a new array which is itself mapped toname. In aggregate, this allows values to be added to a mapping one at a time.- Parameters:
name- the name of the propertyvalue- aJSONObject,JSONArray, String, Boolean, Integer, Long, Double,NULLor null. May not beNaNsorinfinities.- Returns:
- this object.
- Throws:
JSONException- if an error occurs
-
remove
-
isNull
-
has
-
get
Returns the value mapped byname.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if no such mapping exists.
-
opt
-
getBoolean
Returns the value mapped bynameif it exists and is a boolean or can be coerced to a boolean.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if the mapping doesn't exist or cannot be coerced to a boolean.
-
optBoolean
Returns the value mapped bynameif it exists and is a boolean or can be coerced to a boolean. Returns false otherwise.- Parameters:
name- the name of the property- Returns:
- the value or
null
-
optBoolean
Returns the value mapped bynameif it exists and is a boolean or can be coerced to a boolean. Returnsfallbackotherwise.- Parameters:
name- the name of the propertyfallback- a fallback value- Returns:
- the value or
fallback
-
getDouble
Returns the value mapped bynameif it exists and is a double or can be coerced to a double.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if the mapping doesn't exist or cannot be coerced to a double.
-
optDouble
Returns the value mapped bynameif it exists and is a double or can be coerced to a double. ReturnsNaNotherwise.- Parameters:
name- the name of the property- Returns:
- the value or
NaN
-
optDouble
Returns the value mapped bynameif it exists and is a double or can be coerced to a double. Returnsfallbackotherwise.- Parameters:
name- the name of the propertyfallback- a fallback value- Returns:
- the value or
fallback
-
getInt
Returns the value mapped bynameif it exists and is an int or can be coerced to an int.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if the mapping doesn't exist or cannot be coerced to an int.
-
optInt
Returns the value mapped bynameif it exists and is an int or can be coerced to an int. Returns 0 otherwise.- Parameters:
name- the name of the property- Returns:
- the value of
0
-
optInt
Returns the value mapped bynameif it exists and is an int or can be coerced to an int. Returnsfallbackotherwise.- Parameters:
name- the name of the propertyfallback- a fallback value- Returns:
- the value or
fallback
-
getLong
Returns the value mapped bynameif it exists and is a long or can be coerced to a long. Note that JSON represents numbers as doubles, so this is lossy; use strings to transfer numbers over JSON.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if the mapping doesn't exist or cannot be coerced to a long.
-
optLong
Returns the value mapped bynameif it exists and is a long or can be coerced to a long. Returns 0 otherwise. Note that JSON represents numbers as doubles, so this is lossy; use strings to transfer numbers via JSON.- Parameters:
name- the name of the property- Returns:
- the value or
0L
-
optLong
Returns the value mapped bynameif it exists and is a long or can be coerced to a long. Returnsfallbackotherwise. Note that JSON represents numbers as doubles, so this is lossy; use strings to transfer numbers over JSON.- Parameters:
name- the name of the propertyfallback- a fallback value- Returns:
- the value or
fallback
-
getString
Returns the value mapped bynameif it exists, coercing it if necessary.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if no such mapping exists.
-
optString
-
optString
-
getJSONArray
Returns the value mapped bynameif it exists and is aJSONArray.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if the mapping doesn't exist or is not aJSONArray.
-
optJSONArray
-
getJSONObject
Returns the value mapped bynameif it exists and is aJSONObject.- Parameters:
name- the name of the property- Returns:
- the value
- Throws:
JSONException- if the mapping doesn't exist or is not aJSONObject.
-
optJSONObject
Returns the value mapped bynameif it exists and is aJSONObject. Returns null otherwise.- Parameters:
name- the name of the property- Returns:
- the value or
null
-
toJSONArray
-
keys
Returns an iterator of theStringnames in this object. The returned iterator supportsremove, which will remove the corresponding mapping from this object. If this object is modified after the iterator is returned, the iterator's behavior is undefined. The order of the keys is undefined.- Returns:
- the keys
-
names
Returns an array containing the string names in this object. This method returns null if this object contains no mappings.- Returns:
- the array
-
toString
-
toString
Encodes this object as a human-readable JSON string for debugging, such as:{ "query": "Pizza", "locations": [ 94043, 90210 ] }- Parameters:
indentSpaces- the number of spaces to indent for each level of nesting.- Returns:
- a string representation of the object.
- Throws:
JSONException- if an error occurs
-
numberToString
Encodes the number as a JSON string.- Parameters:
number- a finite value. May not beNaNsorinfinities.- Returns:
- the encoded value
- Throws:
JSONException- if an error occurs
-
quote
-
wrap
Wraps the given object if necessary.If the object is null or, returns
NULL. If the object is aJSONArrayorJSONObject, no wrapping is necessary. If the object isNULL, no wrapping is necessary. If the object is an array orCollection, returns an equivalentJSONArray. If the object is aMap, returns an equivalentJSONObject. If the object is a primitive wrapper type orString, returns the object. Otherwise if the object is from ajavapackage, returns the result oftoString. If wrapping fails, returns null.- Parameters:
o- the object to wrap- Returns:
- the wrapped object
-