LazyJSON icon indicating copy to clipboard operation
LazyJSON copied to clipboard

A very fast, very lazy JSON parser for Java.

Results 3 LazyJSON issues
Sort by recently updated
recently updated
newest added

Execute following code: ``` LazyArray records = new LazyArray("[{\"id\": \"20\"}]"); LazyArray activities = new LazyArray("[{\"id\": \"30\"}]"); LazyArray tmp = new LazyArray(); for (int i = 0; i < records.length(); i++)...

Hi guys, Thank you for this amazing library. It does work fast and surprisingly stable :-) However, I've had issues with reading JSON files larger than 2 GB. The reason...

Calling ```new LazyObject("{\"key\":2]")``` will raise a LazyException. Calling ```new LazyObject("{\"key\":2}\"")``` will raise a NullPointer exception. It would be great if all parsing issues raised a LazyException. The stacktrace: ``` java.lang.NullPointerException...