A light-weight Json parser and serializer for Java.
This Json parser parses json strings into JsonArray and JsonObject. It is straight forward and easy to use. This also contains immutable Json array and object. There is also a PureJsonArray, which is easier for iterating through a json array with the same generic type. This library supports serialize and deserialize json objects and arrays into Java objects, arrays and collections. The serialization process can be customized by setting SerializeHandler and SerializeNamingPolicy. It also supports annotations to help the process.
- Better error handling for JsonParser (Missing
,
) - Serialize and Deserialize arrays and collections.
- Accept parametric constructors for deserialize objects.
- JsonTokenizer for tokenize keys and values.