forked from fangyidong/json-simple
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
11 lines (7 loc) · 813 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
Modified version of json-simple to remove raw types, and better handling of stream readers.
The original lexer has an issue where it consumes characters that may not be parsed from within JSONParser. If the JSONParser completes before exhausting the internal buffer within the lexer, then those extra characters are discarded and lost. This makes stream processing of JSON responses impossible.
The code has been modified so that characters in the lexer are consumed only as they are processed. To improve reading efficiency, wrap any readers with a BufferedReader. This modification should allow sequential processing of JSON objects coming from the same Reader.
Original project site:
http://code.google.com/p/json-simple/
Original GitHub clone:
https://github.com/fangyidong/json-simple.git