खोज…
पार्स एक जोंस स्ट्रिंग
import groovy.json.JsonSlurper;
def jsonSlurper = new JsonSlurper()
def obj = jsonSlurper.parseText('{ "foo": "bar", "baz": [1] }')
assert obj.foo == 'bar'
assert obj.baz == [1]
एक json फ़ाइल पार्स करें
import groovy.json.JsonSlurper;
def jsonSlurper = new JsonSlurper()
File fl = new File('/path/to/fils.json')
// parse(File file) method is available since 2.2.0
def obj = jsonSlurper.parse(fl)
// for versions < 2.2.0 it's possible to use
def old = jsonSlurper.parse(fl.text)
स्ट्रिंग के लिए एक json लिखें
import groovy.json.JsonOutput;
def json = JsonOutput.toJson([foo: 'bar', baz: [1]])
assert json == '{"foo":"bar","baz":[1]}'
नक्शे, सूचियों और प्राथमिकताओं के अलावा groovy.json.JsonOutput
भी POJOs groovy.json.JsonOutput
का समर्थन करता है:
import groovy.json.JsonOutput;
class Tree {
def name
def type
}
Tree willow = new Tree(name:'Willow',type:'Deciduous')
Tree olive = new Tree(name:'Olive',type:'Evergreen')
assert JsonOutput.toJson(willow) == '{"type":"Deciduous","name":"Willow"}'
assert JsonOutput.toJson([willow,olive]) == '[{"type":"Deciduous","name":"Willow"},{"type":"Evergreen","name":"Olive"}]'
सुंदर-एक जोंस स्ट्रिंग प्रिंट
import groovy.json.JsonOutput;
def json = JsonOutput.toJson([foo: 'bar', baz: [1]])
assert json == '{"foo":"bar","baz":[1]}'
def pretty = JsonOutput.prettyPrint(json)
assert pretty == '''{
"foo": "bar",
"baz": [
1
]
}'''
किसी फ़ाइल में एक json लिखें
import groovy.json.JsonOutput;
def json = JsonOutput.toJson([foo: 'bar', baz: [1]])
new File("/tmp/output.json").write(json)
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow