我的目标是读取一个JSON文件并理解所有值的位置,这样当我遇到相同的JSON时,我可以轻松读取所有值。我正在寻找一种方法,以Jayway JsonPath格式返回包含每个数据值的所有路径的列表。
示例JSON:
{
"shopper": {
"Id": "4973860941232342",
"Context": {
"CollapseOrderItems": false,
"IsTest": false
}
},
"SelfIdentifiersData": {
"SelfIdentifierData": [
{
"SelfIdentifierType": {
"SelfIdentifierType": "111"
}
},
{
"SelfIdentifierType": {
"SelfIdentifierType": "2222"
}
}
]
}
}
理想情况下,我想将JSON作为字符串并执行以下操作:
String json = "{'shopper': {'Id': '4973860941232342', 'Context': {'CollapseOrderItems': false, 'IsTest': false } }, 'SelfIdentifiersData': {'SelfIdentifierData': [{'SelfIdentifierType': {'SelfIdentifierType': '111'} }, {'SelfIdentifierType': {'SelfIdentifierType': '2222'} } ] } }";
Configuration conf = Configuration.defaultConfiguration();
List<String> jsonPaths = JsonPath.using(conf).parse(json).read("$");
for (String path : jsonPaths) {
System.out.println(path);
}
此代码将打印此代码,这是JSON中所有值的位置:
$.shopper.Id
$.shopper.Context.CollapseOrderItems
$.shopper.Context.IsTest
$.SelfIdentifiersData[0].SelfIdentifierData.SelfIdentifierType.SelfIdentifierType
$.SelfIdentifiersData[1].SelfIdentifierData.SelfIdentifierType.SelfIdentifierType
然后理想情况下,我可以获取该列表并解析相同的JSON对象以获取每个值。
//after list is created
Object document = Configuration.defaultConfiguration().jsonProvider().parse(json);
for (String path : jsonPaths) {
Object value = JsonPath.read(document, path);
//do something
}
我知道我可以获得一个代表JSON文件的Map,但我不确定它是否提供同样的访问权限以检索所有值。如果有一个简单的方法可以使用JSONPath,那将是很好的,否则欢迎任何其他方法。
答案 0 :(得分:12)
我提出了一个解决方案,分享以防其他人正在寻找同样的事情:
evaluate
答案 1 :(得分:3)
请参阅此实用程序:https://github.com/wnameless/json-flattener 完美回答您的要求。为复杂的json字符串提供Flattened map和Flattened字符串。 我不是这个的作者,但已成功地用它作为我的用例。