* @param strict Whether or not to parse in 'strict' mode, meaning all strings must be quoted (including identifiers), and comments are not allowed.
* @throws JSONException Thrown when the string passed is null, or malformed JSON..
*/
public JSONObject(String str, boolean strict) throws JSONException {
super();
JSON4JStringReader reader = new JSON4JStringReader(str);
(new Parser(reader, strict)).parse(this);
}