mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 07:50:52 -07:00
clarifies exception that the parser makes when reading JSON
This commit is contained in:
parent
115f8b660b
commit
b044b7db4d
1 changed files with 7 additions and 1 deletions
|
@ -104,6 +104,12 @@ error to be generated. Malformed JSON Texts such as missing end " (quote) on str
|
|||
invalid number formats (1.2e6.3) will cause errors as such documents can not be read
|
||||
reliably.
|
||||
|
||||
Some notible exceptions that the JSON Parser in this library accepts are:
|
||||
* Unquoted keys `{ key: "value" }`
|
||||
* Unquoted values `{ "key": value }`
|
||||
* Unescaped literals like "tab" in string values `{ "key": "value with an unescaped tab" }`
|
||||
* Numbers out of range for `Double` or `Long` are parsed as strings
|
||||
|
||||
Release history:
|
||||
|
||||
~~~
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue