Parses json from a String:
Example:
// include jsondoc.groovy
// Optional
import org.json.JSONArray;
import org.json.JSONObject;
import org.json.JSONException;
JsonDoc json = new JsonDoc();
json.read("{ "title": "Read this book" }");
// Depending on the input one is not null
JSONObject rootObject = json.getRoot();
JSONArray arr = json.getArray();
More methods:
// include jsondoc.groovy
// Provide json in Constructor
JsonDoc json = new JsonDoc("{ "title": "Read this book" }");