* @param rdr The Reader from which to read the JSON array string to parse.
* @param strict Boolean denoting if the JSON should be parsed n strict mode, meaning unquoted strings and comments are not allowed.
* @throws JSONException Thrown when the string passed is null, or malformed JSON..
*/
public JSONArray(Reader rdr, boolean strict) throws JSONException {
(new Parser(rdr, strict)).parse(this);
}