| Package | Description |
|---|---|
| javax.json |
Java API for JSON Processing API provides a way to process
(for e.g.
|
| javax.json.spi |
SPI to plugin implementations for
JsonParser
and JsonGenerator portably. |
| javax.json.stream |
Provides a streaming API to parse and generate
JSON.
|
| Modifier and Type | Method and Description |
|---|---|
static JsonParser |
Json.createParser(InputStream in)
Creates a JSON parser from the specified byte stream.
|
static JsonParser |
Json.createParser(Reader reader)
Creates a JSON parser from the specified character stream
|
| Modifier and Type | Method and Description |
|---|---|
abstract JsonParser |
JsonProvider.createParser(InputStream in)
Creates a JSON parser from the specified byte stream.
|
abstract JsonParser |
JsonProvider.createParser(Reader reader)
Creates a JSON parser from the specified character stream
|
| Modifier and Type | Method and Description |
|---|---|
JsonParser |
JsonParserFactory.createParser(InputStream in)
Creates a JSON parser from the specified byte stream.
|
JsonParser |
JsonParserFactory.createParser(InputStream in,
Charset charset)
Creates a JSON parser from the specified byte stream.
|
JsonParser |
JsonParserFactory.createParser(JsonArray array)
Creates a JSON parser from the specified JSON array.
|
JsonParser |
JsonParserFactory.createParser(JsonObject obj)
Creates a JSON parser from the specified JSON object.
|
JsonParser |
JsonParserFactory.createParser(Reader reader)
Creates a JSON parser from a character stream
|
Copyright © 2013. All Rights Reserved.