Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 595 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 595 Bytes

A minimalistic JSON parser and generator.

The library represents JSON as

  • java.util.HashMap,
  • java.util.ArrayList,
  • java.lang.String,
  • java.lang.Long,
  • java.lang.Double,
  • java.lang.Boolean,
  • null

Just include Parser.java or Generator.java into Your project and use new Parser().parse(...) or new Ganaretor().generate(...).

The library is optimized to avoid unnecessary object allocation.