相关文章推荐
迷茫的鸵鸟  ·  Tutorial: Microsoft ...·  5 月前    · 
小眼睛的脆皮肠  ·  [Android] MediaPlayer ...·  5 月前    · 
胆小的毛衣  ·  C 语言 ...·  1 年前    · 

JSONPath的介绍:

JsonPath 是一种简单的方法来提取给定JSON文档的部分内容。
JsonPath表达式总是以与XPath表达式结合使用XML文档相同的方式引用JSON结构。
JsonPath中的“根成员对象”始终称为$,无论是对象还是数组。

JsonPath 对应的maven包

<dependency>
    <groupId>com.jayway.jsonpath</groupId>
    <artifactId>json-path</artifactId>
    <version>2.2.0</version>
</dependency>

操作符:说明JSONPath语法元素和对应XPath元素的对比

函数可以在路径的尾部调用,函数的输出是路径表达式的输出,该函数的输出是由函数本身所决定的。

函数描述输出
min()提供数字数组的最小值Double
max()提供数字数组的最大值Double
avg()提供数字数组的平均值Double
stddev()提供数字数组的标准偏差值Double
length()提供数组的长度Integer

过滤器运算符

过滤器是用于筛选数组的逻辑表达式。一个典型的过滤器将是[?(@.age > 18)],其中@表示正在处理的当前项目。 可以使用逻辑运算符&&和||创建更复杂的过滤器。 字符串文字必须用单引号或双引号括起来([?(@.color == ‘blue’)] 或者 [?(@.color == “blue”)]).

操作符描述
==left等于right(注意1不等于’1’)
!=不等于
<小于
<=小于等于
>大于
>=大于等于
=~匹配正则表达式[?(@.name =~ /foo.*?/i)]
in左边存在于右边 [?(@.size in [‘S’, ‘M’])]
nin左边不存在于右边
size(数组或字符串)长度
empty(数组或字符串)为空

Java操作实例

"store": { "book": [ "category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95 "category": "fiction", "author": "Evelyn Waugh", "title": "Sword of Honour", "price": 12.99 "category": "fiction", "author": "Herman Melville", "title": "Moby Dick", "isbn": "0-553-21311-3", "price": 8.99 "category": "fiction", "author": "J. R. R. Tolkien", "title": "The Lord of the Rings", "isbn": "0-395-19395-8", "price": 22.99 "bicycle": { "color": "red", "price": 19.95 "expensive": 10
编号JsonPath结果
1$.store.book[*].author获取json中store下book下的所有author值
2$…author获取所有json中所有author的值
3$.store.*所有的东西,书籍和自行车
4$.store…price获取json中store下所有price的值
5$…book[2]获取json中book数组的第3个值
6$…book[-2]倒数的第二本书
7$…book[0,1]前两本书
8$…book[:2]从索引0(包括)到索引2(排除)的所有图书
9$…book[1:2]从索引1(包括)到索引2(排除)的所有图书
10$…book[-2:]获取json中book数组的最后两个值
11$…book[2:]获取json中book数组的第3个到最后一个的区间值
12$…book[?(@.isbn)]获取json中book数组中包含isbn的所有值
13$.store.book[?(@.price < 10)]获取json中book数组中price<10的所有值
14$…book[?(@.price <= $[‘expensive’])]获取json中book数组中price<=expensive的所有值
15$…book[?(@.author =~ /.*REES/i)]获取json中book数组中的作者以REES结尾的所有值(REES不区分大小写)
16$…*逐层列出json中的所有值,层级由外到内
17$…book.length()获取json中book数组的长度

以上的三个点都是两个点

"Nigel Rees", "Evelyn Waugh", "Herman Melville", "J. R. R. Tolkien" "Nigel Rees", "Evelyn Waugh", "Herman Melville", "J. R. R. Tolkien" "category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Evelyn Waugh", "title" : "Sword of Honour", "price" : 12.99 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "J. R. R. Tolkien", "title" : "The Lord of the Rings", "isbn" : "0-395-19395-8", "price" : 22.99 "color" : "red", "price" : 19.95 8.95, 12.99, 8.99, 22.99, 19.95 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Evelyn Waugh", "title" : "Sword of Honour", "price" : 12.99 "category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Evelyn Waugh", "title" : "Sword of Honour", "price" : 12.99 "category" : "fiction", "author" : "Evelyn Waugh", "title" : "Sword of Honour", "price" : 12.99

编号10:

"category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "J. R. R. Tolkien", "title" : "The Lord of the Rings", "isbn" : "0-395-19395-8", "price" : 22.99

编号11:

"category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "J. R. R. Tolkien", "title" : "The Lord of the Rings", "isbn" : "0-395-19395-8", "price" : 22.99

编号12:

"category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "J. R. R. Tolkien", "title" : "The Lord of the Rings", "isbn" : "0-395-19395-8", "price" : 22.99

编号13:

"category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99

编号14:

"category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99

编号15:

"category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95

编号16:

"book" : [ "category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Evelyn Waugh", "title" : "Sword of Honour", "price" : 12.99 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "J. R. R. Tolkien", "title" : "The Lord of the Rings", "isbn" : "0-395-19395-8", "price" : 22.99 "bicycle" : { "color" : "red", "price" : 19.95 "category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Evelyn Waugh", "title" : "Sword of Honour", "price" : 12.99 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "J. R. R. Tolkien", "title" : "The Lord of the Rings", "isbn" : "0-395-19395-8", "price" : 22.99 "color" : "red", "price" : 19.95 "category" : "reference", "author" : "Nigel Rees", "title" : "Sayings of the Century", "price" : 8.95 "category" : "fiction", "author" : "Evelyn Waugh", "title" : "Sword of Honour", "price" : 12.99 "category" : "fiction", "author" : "Herman Melville", "title" : "Moby Dick", "isbn" : "0-553-21311-3", "price" : 8.99 "category" : "fiction", "author" : "J. R. R. Tolkien", "title" : "The Lord of the Rings", "isbn" : "0-395-19395-8", "price" : 22.99 "reference", "Nigel Rees", "Sayings of the Century", 8.95, "fiction", "Evelyn Waugh", "Sword of Honour", 12.99, "fiction", "Herman Melville", "Moby Dick", "0-553-21311-3", 8.99, "fiction", "J. R. R. Tolkien", "The Lord of the Rings", "0-395-19395-8", 22.99, "red", 19.95

编号17:

json字符串的读取

方法一:解析一次json

String json = "...";
List<String> authors = JsonPath.read(json, "$.store.book[*].author");

方法二:对同一个json解析多次,可以使用ReadContext、WriteContext

String json = "...";
ReadContext ctx = JsonPath.parse(json);
List<String> authorsOfBooksWithISBN = ctx.read("$.store.book[?(@.isbn)].author");
List<Map<String, Object>> expensiveBooks = JsonPath
                            .using(configuration)
                            .parse(json)
                            .read("$.store.book[?(@.price > 10)]", List.class);

1.通常read后的返回值会进行自动转型到指定的类型,对应明确定义definite的表达式,应指定其对应的类型。

// 抛出 java.lang.ClassCastException 异常
List<String> list = JsonPath.parse(json).read("$.store.book[0].author")
// 正常
String author = JsonPath.parse(json).read("$.store.book[0].author")

2.默认情况下,MappingProvider SPI提供了一个简单的对象映射器。 这允许您指定所需的返回类型,MappingProvider将尝试执行映射。 在下面的示例中,演示了Long和Date之间的映射。
在这里插入图片描述

String json = "{\"date_as_long\" : 1411455611975}";
Date date = JsonPath.parse(json).read("$['date_as_long']", Date.class);

3.如果您将JsonPath配置为使用JacksonMappingProvider或GsonMappingProvider,您甚至可以将JsonPath输出直接映射到POJO中。

Book book = JsonPath.parse(json).read("$.store.book[0]", Book.class);

欢迎光临我的公众号,一起学习:程序媛米佳
在这里插入图片描述

JSONPath 教程:从入门到实践 JsonPathJava JsonPath implementation项目地址:https://gitcode.com/gh_mirrors/js/JsonPath 1. 项目介绍 JSONPath 是一个用于处理 JSON 数据的查询语言,类似于 XPath 在 XML 中的作用。该项目由 Jayway 公司维护,提供了 Java 的实现版本。JSONP... Json Path介绍 看它的名字你就能知道,这Json Path和JSON文档有关系,正如XPath之于XML文档一样,JsonPathJson文档提供了解析能力,通过使用JsonPath,你可以方便的查找节点、获取想要的数据,JsonPathJson版的XPath。 Json Path语法 JsonPath的语法相对简单,它采用开发语言友好的表达式形式,如果你了解类C语言,对JsonPath就不会感到不适应。 可以在JsonPath表达式执行后进行调用,其输入值为表达式的结果。 Object logsList = JsonPath.read(response, "$.data.entityLogs.logs"); 2.我们想获取List集合的长度,需要将read转换为List数据类型。我们知道Object是所有类型的父类,因为我们直接用List<Object>接受也是可以. JSONPath是一种信息抽取类库,是从JSON文档中抽取指定信息的工具,提供多种语言实现版本,包括Javascript、Python、PHP和JavaJSONPath的安装方法如下: pip install jsonpath JSONPath语法和XPATH语法对比 JSON结构清晰,可读性高,复杂度低,非常容易匹配。JSONPath的语法与Xpath类似,如下表所示为JSONPath与XPath语法对比。 下面使用一个JSON文档演示JSONPath的具体使用JSON 文档的内容如下: jsonpath的介绍: JsonPath是一种简单的方法来提取给定JSON文档的部分内容JsonPath有许多编程语言,如Javascript,Python和PHP,JavaJsonPath提供的json解析非常强大,它提供了类似正则表达式的语法,基本上可以满足所有你想要获得的json内容。 github上有它的应用:https://github.com/json-path/... JsonPath是用来解析多层嵌套的JSON数据。可以认为JsonPath就是JSON版本的XPath。它是一种信息抽取类库,是从JSON文档中抽取指定信息的工具。JsonPath对于JSON来说,就相当于XPath之于XML。@Test//自定义谓词@Override。 在使用Python做接口测试中需要获取json中的字段值,因此需要使用jsonpath里面的提取规则,所以特意学习了jsonpath中的语法。一、对jsonpath的理解在线运行地址:下面有示例的json字符串(1)解释 . 和 $ 字符$.store.book 解释:$ 表示根节点,. 表示根节点下。(这个总体意思是:根节点下的store节点下的book节点)2)解释 ..字符:表示:递归匹配所有子元素,然而获取所有符合条件的内容(这个条件是跟在 ..后面) 1、jsonpath介绍: 首先,JsonPath 是一种信息抽取类库,是从JSON文档中抽取指定信息的工具,提供多种语言实现版本,包括:Javascript, Python, PHP 和 Java。直白点的话就是独立的可以配合多种语言进行匹配的目标值的一种类库,和jmeter中的jsonPath匹配方式很像2、语法说明: JSONPath 表达式总是以与 XPath 表达式与 XML 文档结合使用的相同方式引用 JSON 结构。由于 JSON 结构通常是匿名的并且不一定具有“根 JSONPath是一种用于在JSONJavaScript Object Notation)数据中定位和提取特定元素的查询语言。它类似于XPath对XML的作用,可以帮助我们轻松地按照特定的路径表达式从复杂的JSON结构中获取所需的数据。 通过使用JSONPath,开发人员可以更有效地处理和解析JSON数据,同时减少冗余代码和手动遍历的工作量。它在Web开发、API集成、数据转换等领域具有广泛的应用。