Uses of Class
com.github.cliftonlabs.json_simple.JsonException
-
-
Uses of JsonException in com.github.cliftonlabs.json_simple
Methods in com.github.cliftonlabs.json_simple that throw JsonException Modifier and Type Method Description static java.lang.Object
Jsoner. deserialize(java.io.Reader readableDeserializable)
Deserializes a readable stream according to the RFC 7159 JSON specification.static java.lang.Object
Jsoner. deserialize(java.lang.String deserializable)
A convenience method that assumes a StringReader to deserialize a string.static JsonArray
Jsoner. deserializeMany(java.io.Reader deserializable)
A convenience method that assumes multiple RFC 7159 JSON values (except numbers) have been concatenated together for deserilization which will be collectively returned in a JsonArray wrapper.static void
Jsoner. prettyPrint(java.io.Reader readable, java.io.Writer writable, java.lang.String indentation, java.lang.String newline)
Makes the JSON input more easily human readable using indentation and newline of the caller's choice.
-