您的位置:

深入解析fastjsonjsonpath

一、fastjsonjsonpath简介

fastjsonjsonpath是一个基于fastjson的json路径解析工具,可以根据给定的json路径来查询、获取json对象中的值。此工具具有以下优势:

1、速度快,性能较优;

2、支持无限层级的json对象路径查找;

3、使用简单,易于上手;

4、可方便地与fastjson结合使用。

二、基本用法

1、导入fastjsonjsonpath包

<dependency>  
  <groupId>com.alibaba</groupId>  
  <artifactId>fastjsonjsonpath</artifactId>  
  <version>0.8.0</version>  
</dependency> 

2、创建待解析的json字符串

String jsonStr = "{ \"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 } ], \"bicycle\": { \"color\": \"red\", \"price\": 19.95 } } }";

3、根据需要解析的路径,使用JsonPath类的静态方法read解析json字符串,并使用read方法返回的Object进行数据获取

Object result = JsonPath.read(jsonStr, "$.store.book[1].author");
System.out.println(result.toString()); //输出:Evelyn Waugh

三、常用语法

①.基本语法

1、$表示根节点;

2、@表示当前节点;

3、.表示逐层进入下一级;

4、..表示不限制层级;

5、*表示匹配所有节点;

6、[]表示筛选节点。

例如,$表示根节点,$.store表示根节点下的store节点,$.store.*表示store节点下的所有子节点,$.store..book[0]表示store节点和所有子孙节点中的第一个book节点。

②.筛选语法

筛选语法用于筛选满足特定条件的节点。

例如,$.store.book[?(@.price < 10)]表示选取store节点下,价格小于10的book节点。

③.函数语法

函数语法用于进行节点值的计算和转换。

例如,$.store.book[0].price.floor()表示选取store节点中第一个book节点的价格,并向下取整。

四、高级用法

JsonPath支持许多高级用法,如动态筛选、多条件筛选、嵌套查询等。

①.动态筛选

JsonPath支持使用Java代码动态生成筛选条件。

String jsonStr = "{ \"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 } ], \"bicycle\": { \"color\": \"red\", \"price\": 19.95 } } }";

//定义筛选条件
String filter = "$.store.book[?(@.price < %s)].price";

//动态生成筛选条件,获取价格小于10的book节点的价格
Object result = JsonPath.read(jsonStr, String.format(filter, 10));
System.out.println(result.toString()); //输出:[8.95]

②.多条件筛选

JsonPath支持同时使用多个条件进行筛选。

String jsonStr = "{ \"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 } ], \"bicycle\": { \"color\": \"red\", \"price\": 19.95 } } }";

//定义筛选条件
String filter = "$.store.book[?(@.price < %s && @.author == '%s')].title";

//动态生成筛选条件,获取价格小于10且作者是Nigel Rees的book节点的书名
Object result = JsonPath.read(jsonStr, String.format(filter, 10, "Nigel Rees"));
System.out.println(result.toString()); //输出:["Sayings of the Century"]

③.嵌套查询

JsonPath支持在筛选条件中使用嵌套查询。

String jsonStr = "{ \"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 } ], \"bicycle\": { \"color\": \"red\", \"price\": 19.95 } } }";

//定义筛选条件
String filterOuter = "$.store.book[?(@.price < %s && @.author == '%s')].title";
String filterInner = "$..book[?(@.price < %s && @.author == '%s')].title";

//动态生成嵌套查询条件,获取价格小于10且作者是Nigel Rees的book节点的书名(第二个查询条件需要嵌套使用)
Object result = JsonPath.parse(jsonStr).read(String.format(filterOuter, 10, "Nigel Rees")).read(String.format(filterInner, 10, "Evelyn Waugh"));
System.out.println(result.toString()); //输出:["Sword of Honour"]

五、综合实例

下面的代码演示了如何根据一个json配置文件的路径和对应的key,动态获取某个字段的值。

首先,我们定义一个json配置文件:

{
  "database": {
    "localhost": {
      "username": "user",
      "password": "pass"
    }
  }
}

然后,我们定义一个方法,根据所需key和json配置文件路径,动态获取字段的值:

public static String getJsonValue(String jsonStr, String path, String key) {
    //根据json配置文件路径和所需key,拼接出完整的jsonPath表达式
    String jsonPath = "$." + path + ".[key]";
    jsonPath = jsonPath.replace("[key]", "." + key);

    //使用jsonPath查询,返回结果
    Object result = JsonPath.read(jsonStr, jsonPath);
    return result.toString();
}

调用该方法,获取json配置文件中localhost节点下的username字段:

String jsonStr = "{ \"database\": { \"localhost\": { \"username\": \"user\", \"password\": \"pass\" } } }";
String path = "database.localhost";
String key = "username";

String result = getJsonValue(jsonStr, path, key);
System.out.println(result); //输出:user

六、总结

本文介绍了fastjsonjsonpath的基本用法和常用语法,以及一些高级用法,包括动态筛选、多条件筛选和嵌套查询。使用fastjsonjsonpath可以快速、方便地对json对象进行查询和获取,是一个非常优秀的json路径解析工具。