A free to use JSON Library for your Java application. Free as in liberty and free as in free beer.
- Parse JSON objects and arrays
- stringify JSON objects and arrays
- use custom get methods to skip casting e.g. getBoolean, getLong, ..
- works with unicode
JSONObject object = new JSONObject();
object.put("key", true);
String text = object.toJSONString();
JSONObject parsed = JSON.byText(text);
@nemethi inspired this project
with their project json-pretty-printer