5657585960616263
public static JSONObject parse(String jsonString) { try { return new JSONObject(jsonString); } catch (JSONException ex) { throw new LumifyJsonParseException(jsonString, ex); } }
6465666768697071
public static JSONArray parseArray(String s) { try { return new JSONArray(s); } catch (JSONException ex) { throw new LumifyJsonParseException(s, ex); } }