鉴于JSON的结构如下:
{
"name":"Some Guy",
"emails":[
{
"description":"primary",
"status":"UNVERIFIED",
"email":"first@first-email.com"
},
{
"description":"home",
"status":"VERIFIED",
"email":"second@second-email.com"
},
{
"description":"away",
"status":"VERIFIED",
"email":"third@third-email.com"
}
]
}
我希望JSONPath expression获取状态为VERIFIED
的第一个电子邮件,如果没有,则只需获取阵列中的第一封电子邮件。因此,根据上面的示例,结果将是second@second-email.com
。给出这个例子:
{
"name":"Some Guy",
"emails":[
{
"description":"primary",
"status":"UNVERIFIED",
"email":"first@first-email.com"
},
{
"description":"home",
"status":"UNVERIFIED",
"email":"second@second-email.com"
}
]
}
结果为first@first-email.com
。
这是否可以使用JSONPath表达式?
答案 0 :(得分:9)
你实际上有2个JSONPath表达式,只有当第一个(第一个经过验证的电子邮件)没有返回任何内容时才应评估第二个(第一个电子邮件)表达式,所以我认为你不能同时评估它们,用一个表达式。
你可以一个接一个地应用它们,但是:
public static String getEmail(String json) {
Configuration cf = Configuration.builder().options(Option.SUPPRESS_EXCEPTIONS).build();
DocumentContext ctx = JsonPath.using(cf).parse(json);
List<String> emails = ctx.read("$.emails[?(@.status == 'VERIFIED')].email");
if (!emails.isEmpty()) {
return emails.get(0);
}
return ctx.read("$.emails[0].email");
}
如果电子邮件数组为空,ctx.read("$.emails[0].email")
将返回null而不是抛出异常,这要归功于option SUPPRESS_EXCEPTIONS
。
如果您事先不知道路径数量:
public static String getEmail(String json, String[] paths) {
Configuration cf = Configuration.builder().options(Option.ALWAYS_RETURN_LIST, Option.SUPPRESS_EXCEPTIONS).build();
DocumentContext ctx = JsonPath.using(cf).parse(json);
for (String path : paths) {
List<String> emails = ctx.read(path);
if (!emails.isEmpty()) {
return emails.get(0);
}
}
return null;
}
option ALWAYS_RETURN_LIST
表示返回类型是一个列表,即使您有一个或零结果。
答案 1 :(得分:0)
此代码应该适合您
//Use the json parsing library to extract the data
JsonPath jp = new JsonPath(json);
Map<String, Object> location = jp.get("name.emails[0]");
System.out.println(location);