public class JsonArray extends Object
The constructor can convert a JSON external form string into an internal form Java object. The toString() method creates an external form string.
A get() method returns a value if one can be found, and throws an exception if one cannot be found. An opt() method returns a default value instead of throwing an exception, and so is useful for obtaining optional values.
The generic get() and opt() methods return an object which you can cast or query for type. There are also typed get() and opt() methods that do typing checking and type coersion for you.
The texts produced by the toString() methods are very strict. The constructors are more forgiving in the texts they will accept.
, (comma) may appear just
before the closing bracket., (comma) elision.' (single
quote).{ } [ ] / \ : , = ; # and if they do not look like numbers
and if they are not the reserved words true,
false, or null.; as well as by ,0- (octal) or
0x- (hex) prefix.#| 构造器和说明 |
|---|
JsonArray()
Construct an empty JSONArray.
|
JsonArray(Collection<Object> collection)
Construct a JSONArray from a Collection.
|
JsonArray(JsonTokener x)
Construct a JSONArray from a JSONTokener.
|
JsonArray(String string)
Construct a JSONArray from a source string.
|
| 限定符和类型 | 方法和说明 |
|---|---|
Object |
get(int index)
Get the object value associated with an index.
|
boolean |
getBoolean(int index)
Get the boolean value associated with an index.
|
double |
getDouble(int index)
Get the double value associated with an index.
|
int |
getInt(int index)
Get the int value associated with an index.
|
JsonArray |
getJSONArray(int index)
Get the JSONArray associated with an index.
|
JsonObject |
getJSONObject(int index)
Get the JSONObject associated with an index.
|
String |
getString(int index)
Get the string associated with an index.
|
boolean |
isNull(int index)
Determine if the value is null.
|
String |
join(String separator)
Make a string from the contents of this JSONArray.
|
int |
length()
Get the length of the JSONArray.
|
Object |
opt(int index)
Get the optional object value associated with an index.
|
boolean |
optBoolean(int index)
Get the optional boolean value associated with an index.
|
boolean |
optBoolean(int index,
boolean defaultValue)
Get the optional boolean value associated with an index.
|
double |
optDouble(int index)
Get the optional double value associated with an index.
|
double |
optDouble(int index,
double defaultValue)
Get the optional double value associated with an index.
|
int |
optInt(int index)
Get the optional int value associated with an index.
|
int |
optInt(int index,
int defaultValue)
Get the optional int value associated with an index.
|
JsonArray |
optJSONArray(int index)
Get the optional JSONArray associated with an index.
|
JsonObject |
optJSONObject(int index)
Get the optional JSONObject associated with an index.
|
String |
optString(int index)
Get the optional string value associated with an index.
|
String |
optString(int index,
String defaultValue)
Get the optional string associated with an index.
|
JsonArray |
put(boolean value)
Append a boolean value.
|
JsonArray |
put(double value)
Append a double value.
|
JsonArray |
put(int value)
Append an int value.
|
JsonArray |
put(int index,
boolean value)
Put or replace a boolean value in the JSONArray.
|
JsonArray |
put(int index,
double value)
Put or replace a double value.
|
JsonArray |
put(int index,
int value)
Put or replace an int value.
|
JsonArray |
put(int index,
Object value)
Put or replace an object value in the JSONArray.
|
JsonArray |
put(Object value)
Append an object value.
|
JsonObject |
toJSONObject(JsonArray names)
Produce a JSONObject by combining a JSONArray of names with the values
of this JSONArray.
|
String |
toString()
Make an JSON external form string of this JSONArray.
|
String |
toString(int indentFactor)
Make a prettyprinted JSON string of this JSONArray.
|
public JsonArray()
public JsonArray(JsonTokener x) throws ParseException
x - A JSONTokenerParseException - A JSONArray must start with '['ParseException - Expected a ',' or ']'public JsonArray(String string) throws ParseException
string - A string that begins with
[ (left bracket)
and ends with ] (right bracket).ParseException - The string must conform to JSON syntax.public JsonArray(Collection<Object> collection)
collection - A Collection.public Object get(int index) throws NoSuchElementException
index - The index must be between 0 and length() - 1.NoSuchElementExceptionpublic boolean getBoolean(int index)
throws ClassCastException,
NoSuchElementException
index - The index must be between 0 and length() - 1.NoSuchElementException - if the index is not foundClassCastExceptionpublic double getDouble(int index)
throws NoSuchElementException,
NumberFormatException
index - The index must be between 0 and length() - 1.NoSuchElementException - if the key is not foundNumberFormatException - if the value cannot be converted to a number.public int getInt(int index)
throws NoSuchElementException,
NumberFormatException
index - The index must be between 0 and length() - 1.NoSuchElementException - if the key is not foundNumberFormatException - if the value cannot be converted to a number.public JsonArray getJSONArray(int index) throws NoSuchElementException
index - The index must be between 0 and length() - 1.NoSuchElementException - if the index is not found or if the
value is not a JSONArraypublic JsonObject getJSONObject(int index) throws NoSuchElementException
index - subscriptNoSuchElementException - if the index is not found or if the
value is not a JSONObjectpublic String getString(int index) throws NoSuchElementException
index - The index must be between 0 and length() - 1.NoSuchElementExceptionpublic boolean isNull(int index)
index - The index must be between 0 and length() - 1.public String join(String separator)
separator - A string that will be inserted between the elements.public int length()
public Object opt(int index)
index - The index must be between 0 and length() - 1.public boolean optBoolean(int index)
index - The index must be between 0 and length() - 1.public boolean optBoolean(int index,
boolean defaultValue)
index - The index must be between 0 and length() - 1.defaultValue - A boolean default.public double optDouble(int index)
index - The index must be between 0 and length() - 1.public double optDouble(int index,
double defaultValue)
index - subscriptdefaultValue - The default value.public int optInt(int index)
index - The index must be between 0 and length() - 1.public int optInt(int index,
int defaultValue)
index - The index must be between 0 and length() - 1.defaultValue - The default value.public JsonArray optJSONArray(int index)
index - subscriptpublic JsonObject optJSONObject(int index)
index - The index must be between 0 and length() - 1.public String optString(int index)
index - The index must be between 0 and length() - 1.public String optString(int index, String defaultValue)
index - The index must be between 0 and length() - 1.defaultValue - The default value.public JsonArray put(boolean value)
value - A boolean value.public JsonArray put(double value)
value - A double value.public JsonArray put(int value)
value - An int value.public JsonArray put(Object value)
value - An object value. The value should be a
Boolean, Double, Integer, JSONArray, JSObject, or String, or the
JSONObject.NULL object.public JsonArray put(int index, boolean value)
index - subscript The subscript. If the index is greater than the length of
the JSONArray, then null elements will be added as necessary to pad
it out.value - A boolean value.NoSuchElementException - The index must not be negative.public JsonArray put(int index, double value)
index - subscript The subscript. If the index is greater than the length of
the JSONArray, then null elements will be added as necessary to pad
it out.value - A double value.NoSuchElementException - The index must not be negative.public JsonArray put(int index, int value)
index - subscript The subscript. If the index is greater than the
length of the JSONArray, then null elements will be added as necessary
to pad it out.value - An int value.NoSuchElementException - The index must not be negative.public JsonArray put(int index, Object value) throws NoSuchElementException, NullPointerException
index - The subscript. If the index is greater than the length of
the JSONArray, then null elements will be added as necessary to pad
it out.value - An object value.NoSuchElementException - The index must not be negative.NullPointerException - The index must not be null.public JsonObject toJSONObject(JsonArray names)
names - A JSONArray containing a list of key strings. These will be
paired with the values.public String toString()
public String toString(int indentFactor)
indentFactor - The number of spaces to add to each level of
indentation.[ (left bracket) and ending
with ] (right bracket).Copyright © 2022. All rights reserved.