- java.lang.Object
-
- com.google.gson.JsonParser
-
public final class JsonParser extends Object
A parser to parse JSON into a parse tree ofJsonElement
s.- Since:
- 1.3
- Author:
- Inderjeet Singh, Joel Leitch
-
-
Constructor Summary
Constructors Constructor Description JsonParser()
Deprecated.No need to instantiate this class, use the static methods instead.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description JsonElement
parse(JsonReader json)
Deprecated.JsonElement
parse(Reader json)
Deprecated.JsonElement
parse(String json)
Deprecated.static JsonElement
parseReader(JsonReader reader)
Returns the next value from the JSON stream as a parse tree.static JsonElement
parseReader(Reader reader)
Parses the complete JSON string provided by the reader into a parse tree.static JsonElement
parseString(String json)
Parses the specified JSON string into a parse tree.
-
-
-
Constructor Detail
-
JsonParser
@Deprecated public JsonParser()
Deprecated.No need to instantiate this class, use the static methods instead.
-
-
Method Detail
-
parseString
public static JsonElement parseString(String json) throws JsonSyntaxException
Parses the specified JSON string into a parse tree. An exception is thrown if the JSON string has multiple top-level JSON elements, or if there is trailing data.The JSON string is parsed in lenient mode.
- Parameters:
json
- JSON text- Returns:
- a parse tree of
JsonElement
s corresponding to the specified JSON - Throws:
JsonParseException
- if the specified text is not valid JSONJsonSyntaxException
- Since:
- 2.8.6
-
parseReader
public static JsonElement parseReader(Reader reader) throws JsonIOException, JsonSyntaxException
Parses the complete JSON string provided by the reader into a parse tree. An exception is thrown if the JSON string has multiple top-level JSON elements, or if there is trailing data.The JSON data is parsed in lenient mode.
- Parameters:
reader
- JSON text- Returns:
- a parse tree of
JsonElement
s corresponding to the specified JSON - Throws:
JsonParseException
- if there is an IOException or if the specified text is not valid JSONJsonIOException
JsonSyntaxException
- Since:
- 2.8.6
-
parseReader
public static JsonElement parseReader(JsonReader reader) throws JsonIOException, JsonSyntaxException
Returns the next value from the JSON stream as a parse tree. Unlike the otherparse
methods, no exception is thrown if the JSON data has multiple top-level JSON elements, or if there is trailing data.The JSON data is parsed in lenient mode, regardless of the lenient mode setting of the provided reader. The lenient mode setting of the reader is restored once this method returns.
- Throws:
JsonParseException
- if there is an IOException or if the specified text is not valid JSONJsonIOException
JsonSyntaxException
- Since:
- 2.8.6
-
parse
@Deprecated public JsonElement parse(String json) throws JsonSyntaxException
Deprecated.- Throws:
JsonSyntaxException
-
parse
@Deprecated public JsonElement parse(Reader json) throws JsonIOException, JsonSyntaxException
Deprecated.- Throws:
JsonIOException
JsonSyntaxException
-
parse
@Deprecated public JsonElement parse(JsonReader json) throws JsonIOException, JsonSyntaxException
Deprecated.- Throws:
JsonIOException
JsonSyntaxException
-
-