使用 jsonpath 表达式的数组大小 - Stefan Goessner JsonPath
Array size using jsonpath expression - Stefan Goessner JsonPath
我在使用 Stefan Goessner 的 JsonPath 查找数组或列表大小时遇到问题。我使用的版本 json-path-2.0.0.
我的 json 路径表达式是 $.orders.length
并且 JSON 看起来像这样:
{
"orders" : [
...
]
}
失败并出现以下错误:
com.jayway.jsonpath.PathNotFoundException: Property ['length'] not found in path $['orders']
我也尝试了 $.orders.length()
,但再次失败并出现以下错误:
com.jayway.jsonpath.PathNotFoundException: Property ['length()'] not found in path $['orders']
请建议我如何使用 Goessner 的 JsonPath 表达式获取数组的长度。
[编辑] 以下是我获取配置的方式:
com.jayway.jsonpath.Configuration conf = com.jayway.jsonpath.Configuration.defaultConfiguration().addOptions(Option.DEFAULT_PATH_LEAF_TO_NULL);
DocumentContext documentContext = JsonPath.using(conf).parse(orderJson);
Object val = documentContext.read(jsonPathExpression);
似乎只有 jayway json-path 库的 added in version 2.1.0 支持返回数组的 length()
。
根据一些快速测试,$.orders.length()
表达式似乎适用于版本 2.1.0 和版本 2.2.0,因此我认为您只需要升级依赖版本即可修复错误你看到了。
List values = jsonpath.getList("orders");
System.out.println("Size of object : "+ values.size());
JsonPath js = new JsonPath(response);
List values = js.getList("Mention the path of the json here");
int size= values.size();
System.out.println(size);
我在使用 Stefan Goessner 的 JsonPath 查找数组或列表大小时遇到问题。我使用的版本 json-path-2.0.0.
我的 json 路径表达式是 $.orders.length
并且 JSON 看起来像这样:
{
"orders" : [
...
]
}
失败并出现以下错误:
com.jayway.jsonpath.PathNotFoundException: Property ['length'] not found in path $['orders']
我也尝试了 $.orders.length()
,但再次失败并出现以下错误:
com.jayway.jsonpath.PathNotFoundException: Property ['length()'] not found in path $['orders']
请建议我如何使用 Goessner 的 JsonPath 表达式获取数组的长度。
[编辑] 以下是我获取配置的方式:
com.jayway.jsonpath.Configuration conf = com.jayway.jsonpath.Configuration.defaultConfiguration().addOptions(Option.DEFAULT_PATH_LEAF_TO_NULL);
DocumentContext documentContext = JsonPath.using(conf).parse(orderJson);
Object val = documentContext.read(jsonPathExpression);
似乎只有 jayway json-path 库的 added in version 2.1.0 支持返回数组的 length()
。
根据一些快速测试,$.orders.length()
表达式似乎适用于版本 2.1.0 和版本 2.2.0,因此我认为您只需要升级依赖版本即可修复错误你看到了。
List values = jsonpath.getList("orders");
System.out.println("Size of object : "+ values.size());
JsonPath js = new JsonPath(response);
List values = js.getList("Mention the path of the json here");
int size= values.size();
System.out.println(size);