< Back

Contents

JsonDoc

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("{ &quot;title&quot;: &quot;Read this book&quot; }");

// 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("{ &quot;title&quot;: &quot;Read this book&quot; }");