JsonReader

abstract class JsonReader : Closeable

Reads a JSON (RFC 7159) encoded value as a stream of tokens. This stream includes both literal values (strings, numbers, booleans, and nulls) as well as the begin and end delimiters of objects and arrays. The tokens are traversed in depth-first order, the same order that they appear in the JSON document. Within JSON objects, name/value pairs are represented by a single token.

Parsing JSONTo create a recursive descent parser for your own JSON streams, first create an entry point method that creates a {@code JsonReader}.

Next, create handler methods for each structure in your JSON text. You'll need a method for each object type and for each array type.

  • Within array handling methods, first call beginArray to consume the array's opening bracket. Then create a while loop that accumulates values, terminating when hasNext is false. Finally, read the array's closing bracket by calling .
  • Within object handling methods, first call beginObject to consume the object's opening brace. Then create a while loop that assigns values to local variables based on their name. This loop should terminate when hasNext is false. Finally, read the object's closing brace by calling endObject.

When a nested object or array is encountered, delegate to the corresponding handler method.

When an unknown name is encountered, strict parsers should fail with an exception. Lenient parsers should call skipValue to recursively skip the value's nested tokens, which may otherwise conflict.

If a value may be null, you should first check using peek. Null literals can be consumed using either nextNull or skipValue.

ExampleSuppose we'd like to parse a stream of messages such as the following:
{@code * [ * { * "id": 912345678901, * "text": "How do I read a JSON stream in Java?", * "geo": null, * "user": { * "name": "json_newb", * "followers_count": 41 * } * }, * { * "id": 912345678902, * "text": "@json_newb just use JsonReader!", * "geo": [50.454722, -104.606667], * "user": { * "name": "jesse", * "followers_count": 2 * } * } * ] * }
This code implements the parser for the above structure:
{@code * public ListreadJsonStream(BufferedSource source) throws IOException {
 *   JsonReader reader = JsonReader.of(source);
 *   try {
 *     return readMessagesArray(reader);
 *   } finally {
 *     reader.close();
 *   }
 * }
 *
 * public List
Number HandlingThis reader permits numeric values to be read as strings and string values to be read as numbers. For example, both elements of the JSON array {@code [1, "1"]} may be read using either or nextString. This behavior is intended to prevent lossy numeric conversions: double is JavaScript's only numeric type and very large values like {@code 9007199254740993} cannot be represented exactly on that platform. To minimize precision loss, extremely large values should be written and read as strings in JSON.

Each {@code JsonReader} may be used to read a single JSON stream. Instances of this class are not thread safe.

Types

Options
Link copied to clipboard
class Options
A set of strings to be chosen with selectName or selectString.
Token
Link copied to clipboard
enum Token
A structure, name, or value type in a JSON-encoded string.

Functions

beginArray
Link copied to clipboard
abstract fun beginArray()
Consumes the next token from the JSON stream and asserts that it is the beginning of a newarray.
beginObject
Link copied to clipboard
abstract fun beginObject()
Consumes the next token from the JSON stream and asserts that it is the beginning of a newobject.
close
Link copied to clipboard
abstract fun close()
endArray
Link copied to clipboard
abstract fun endArray()
Consumes the next token from the JSON stream and asserts that it is the end of the currentarray.
endObject
Link copied to clipboard
abstract fun endObject()
Consumes the next token from the JSON stream and asserts that it is the end of the currentobject.
failOnUnknown
Link copied to clipboard
fun failOnUnknown(): Boolean
Returns true if this parser forbids skipping names and values.
getPath
Link copied to clipboard
fun getPath(): String
Returns a JsonPath to the current locationin the JSON value.
hasNext
Link copied to clipboard
abstract fun hasNext(): Boolean
Returns true if the current array or object has another element.
isLenient
Link copied to clipboard
fun isLenient(): Boolean
Returns true if this parser is liberal in what it accepts.
nextBoolean
Link copied to clipboard
abstract fun nextBoolean(): Boolean
Returns the boolean value of the next token, consuming it.
nextDouble
Link copied to clipboard
abstract fun nextDouble(): Double
Returns the double value of the next token, consuming it.
nextInt
Link copied to clipboard
abstract fun nextInt(): Int
Returns the int value of the next token, consuming it.
nextLong
Link copied to clipboard
abstract fun nextLong(): Long
Returns the long value of the next token, consuming it.
nextName
Link copied to clipboard
abstract fun nextName(): String
Returns the next token, a property name, and consumes it.
nextNull
Link copied to clipboard
abstract fun <T> nextNull(): T
Consumes the next token from the JSON stream and asserts that it is a literal null.
nextSource
Link copied to clipboard
abstract fun nextSource(): BufferedSource
Returns the next value as a stream of UTF-8 bytes and consumes it.
nextString
Link copied to clipboard
abstract fun nextString(): String
Returns the string value of the next token, consuming it.
of
Link copied to clipboard
open fun of(source: BufferedSource): JsonReader
Returns a new instance that reads UTF-8 encoded JSON from {@code source}.
peek
Link copied to clipboard
abstract fun peek(): JsonReader.Token
Returns the type of the next token without consuming it.
peekJson
Link copied to clipboard
abstract fun peekJson(): JsonReader
Returns a new {@code JsonReader} that can read data from this {@code JsonReader} withoutconsuming it.
promoteNameToValue
Link copied to clipboard
abstract fun promoteNameToValue()
Changes the reader to treat the next name as a string value.
readJsonValue
Link copied to clipboard
fun readJsonValue(): Any
Returns the value of the next token, consuming it.
selectName
Link copied to clipboard
abstract fun selectName(options: JsonReader.Options): Int
If the next token is a property name that's in {@code options}, thisconsumes it and returns its index.
selectString
Link copied to clipboard
abstract fun selectString(options: JsonReader.Options): Int
If the next token is a string that's in {@code options}, thisconsumes it and returns its index.
setTag
Link copied to clipboard
fun <T> setTag(clazz: Class<T>, value: T)
Assigns the tag value using the given class key and value.
skipName
Link copied to clipboard
abstract fun skipName()
Skips the next token, consuming it.
skipValue
Link copied to clipboard
abstract fun skipValue()
Skips the next value recursively.
tag
Link copied to clipboard
fun <T> tag(clazz: Class<T>): T
Returns the tag value for the given class key.

Properties

failOnUnknown
Link copied to clipboard
open var failOnUnknown: Boolean
True to throw a JsonDataException on any attempt to call skipValue.
lenient
Link copied to clipboard
open var lenient: Boolean
True to accept non-spec compliant JSON.