我想从下面的JSON中提取s.d.url
的值
我正在使用System.out.println所示的以下声明
但我没有得到结果。如果字段本身包含“。”
JSON
{
"data":{
"H1":{
"com.abc.def":{
"a_enabled":false,
"b_config":true
},
"c.s.urls":{
"s.d.url":"https://url1.com",
"w.p.url":"https://url2.com",
"s.c.url":"https://url3.com"
},
"com.abc.con":{
"e_n":true,
"a_r":false,
"c_t":"XYZMB"
}
},
"dCId":"ABCD"
}
}
ExtractableResponse<Response> spec = given()
.request().log().all()
.expect().statusCode(200)
.when()
.get(EndpointsCloudServices.getConfigUrl() + "?" + params)
.then().log().body()
.extract();
//want to get value of s.d.url
System.out.println("Triage???? " + spec.path("data.H1.c.s.urls.s.d.url"));
答案 0 :(得分:0)
尝试以下操作,它将返回s.d.url
的值(注意方括号和单引号):
spec.path("data.H1.['c.s.urls'].['s.d.url']")
甚至更短,如果您确定s.d.url
是整个json文档中的唯一名称:
spec.path("$.['s.d.url']")
接下来,这只是为了说明通过使用JSONPath表达式在其名称中包含点的引用字段的常见情况 - 您只需将字段名称包装在['
和']
示例JSON:
{
"field.name": "value",
"nested": {
"field.with.dot": {
"field.inside": "anotherValue"
}
}
}
用于访问相应字段值的有效JSONPath表达式示例:
$['field.name']
$.['field.inside']
nested.['field.with.dot'].['field.inside']
提示:您可以使用online evaluator或expression tester
等工具在json中快速测试JSONPaths