fun readFrom(reader: Reader): JsonArrayReads a JSON array from the given reader.
Characters are read in chunks and buffered internally, therefore wrapping an existing reader in
an additional BufferedReader does not improve reading
performance.
reader - the reader to read the JSON array from
IOException - if an I/O error occurs in the reader
ParseException - if the input is not valid JSON
UnsupportedOperationException - if the input does not contain a JSON array
Return
the JSON array that has been read
fun readFrom(string: String): JsonArrayReads a JSON array from the given string.
string - the string that contains the JSON array
ParseException - if the input is not valid JSON
UnsupportedOperationException - if the input does not contain a JSON array
Return
the JSON array that has been read