如何使用java从json中检索元素值?

时间:2016-04-03 09:39:48

标签: java json

这是json字符串,我必须从中检索元素值

{ "search": { "entry": [
{ "d": "op=example.com",
"at": [
{ "name": "id", "value": [ "786786876" ] },
{ "name": "name", "value": [ "usaduas" ] }]
},
{ "d": "op=example.com",
"at": [
{ "name": "id", "value": [ "786876876" ] },
{ "name": "call", "value": [ "gyudyusg" ] }]
},
{ "d": "op=example.com",
"at": [
{ "name": "call", "value": [ "hsadkjhsakjdh" ] },
{ "name": "id", "value": [ "768768768" ] }]
}

我想从属性或节点中检索文本" name" :"打电话"。我想使用jsonPath检索此值。

提前致谢。

1 个答案:

答案 0 :(得分:0)

请根据您的理解尝试其中一项。这两个是SerializeDeserialize JSONObject google gson API tutorial-convert-java-object-to-from-json

最方便,最常用的API

OR Google Json simple API example-read-and-write-json