我有下面的JSON,我想将“Person 1”和“Person 2”的值作为键-值对获取到Map中,或者单独获取也可以。
预期输出:[属性:[“Persone 1”:“Robert”,“Person 2”:“Steven”]]
我从JSON解析开始,并不知道下一步该做什么?
def parsedJSON= new groovy.json.JsonSlurper().parseText(body)
JSON
"permutationsRequest":{
"attributes":[
{
"name":"person1",
"value":"ROBERT"
},
{
"name":"person2",
"value":"STEVEN"
}
]
}
}
1条答案
按热度按时间uubf1zoe1#