public class JsonSlurperClassic
extends Object
This is the original slurper included in case someone relies on its exact behavior. JSON slurper which parses text or reader content into a data structure of lists and maps.
Example usage:
def slurper = new groovy.json.JsonSlurperClassic()
def result = slurper.parseText('{"person":{"name":"Guillaume","age":33,"pets":["dog","cat"]}}')
assert result.person.name == "Guillaume"
assert result.person.age == 33
assert result.person.pets.size() == 2
assert result.person.pets[0] == "dog"
assert result.person.pets[1] == "cat"
| Type Params | Return Type | Name and description |
|---|---|---|
|
public int |
getMaxNestingDepth()Returns the maximum nesting depth of arrays/objects the parser will accept. |
|
public Object |
parse(Reader reader)Parse a JSON data structure from content from a reader |
|
public Object |
parse(File file)Parse a JSON data structure from content within a given File. |
|
public Object |
parse(File file, String charset)Parse a JSON data structure from content within a given File. |
|
public Object |
parse(URL url)Parse a JSON data structure from content at a given URL. |
|
public Object |
parse(URL url, Map params)Parse a JSON data structure from content at a given URL. |
|
public Object |
parse(Map params, URL url)Parse a JSON data structure from content at a given URL. |
|
public Object |
parse(URL url, String charset)Parse a JSON data structure from content at a given URL. |
|
public Object |
parse(URL url, Map params, String charset)Parse a JSON data structure from content at a given URL. |
|
public Object |
parse(Map params, URL url, String charset)Parse a JSON data structure from content at a given URL. |
|
public Object |
parseText(String text)Parse a text representation of a JSON data structure |
|
public void |
setMaxNestingDepth(int maxNestingDepth)Sets the maximum nesting depth of arrays/objects the parser will accept before throwing a JsonException. |
Returns the maximum nesting depth of arrays/objects the parser will accept.
<= 0 when the check is disabledParse a JSON data structure from content from a reader
reader - reader over a JSON contentParse a JSON data structure from content within a given File.
file - File containing JSON contentParse a JSON data structure from content within a given File.
file - File containing JSON contentcharset - the charset for this FileParse a JSON data structure from content at a given URL.
url - URL containing JSON contentParse a JSON data structure from content at a given URL.
url - URL containing JSON contentparams - connection parametersParse a JSON data structure from content at a given URL. Convenience variant when using Groovy named parameters for the connection params.
params - connection parametersurl - URL containing JSON contentParse a JSON data structure from content at a given URL.
url - URL containing JSON contentcharset - the charset for this FileParse a JSON data structure from content at a given URL.
url - URL containing JSON contentparams - connection parameterscharset - the charset for this FileParse a JSON data structure from content at a given URL. Convenience variant when using Groovy named parameters for the connection params.
params - connection parametersurl - URL containing JSON contentcharset - the charset for this FileParse a text representation of a JSON data structure
text - JSON text to parse Sets the maximum nesting depth of arrays/objects the parser will accept before throwing a
JsonException. A value of 0 or less disables the check.
maxNestingDepth - maximum number of nested arrays/objects to allow