在java中使用JsonPath查找json字段的最大值

时间:2014-10-03 22:58:00

标签: java json jsonpath

我浏览了这个文件: https://github.com/jayway/JsonPath

但我无法弄清楚如何找到特定字段的最大值。 在给定的json中,如果我想找出最贵书的价格怎么办?

这是json:

{
    "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": 29.95
        }
    },
    "expensive": 10
 }

查找图书最高价格的jsonpath表达式(在java中)是什么。答案应该是22.99。

3 个答案:

答案 0 :(得分:0)

您可以尝试这样的事情:

var myArray = JSON.parse(jsonAsString)["book"];
var max = myArray .reduce(function(a, b) {
   return Math.max(a, b.price);
}, 0);

答案 1 :(得分:0)

假设jPathStrB是上面json的StringBuilder。 (编辑:我现在意识到你正在使用另一个jayway jsonpath库,而不是基于groovy的库。下面这个答案使用了带有放心的JsonPath并且依赖于groovy" max()"方法。)

    JsonPath jPath = new JsonPath(jPathStrB.toString());
    jPath.prettyPrint();
    Float price = jPath.get("store.book.price.max()");
    System.out.println("Max price: " + price);

}

答案 2 :(得分:0)

我参加这个派对已经很晚了,但是从版本2.4.0开始,JsonPath不支持你期望的行为。

来自维护者:

  

您正尝试将函数max()应用于评估结果。这不是事情的运作方式。该函数将应用于与路径匹配的每个对象。

为了得到答案,您需要手动将每个路径添加到数组中:

$.max($.store.book[0].price, $.store.book[1].price, $.store.book[2].price, $.store.book[3].price)

我认为基于自述文件中的文档,大多数人都希望如果以前的工作,那么这也应该:

$.max($.store.book[*].price)

但它会引发错误:

Aggregation function attempted to calculate value using empty array

Issue #191的讨论可以追溯到2016年。 还有一个旧的拉取请求:https://github.com/json-path/JsonPath/pull/197 它似乎有this enhancement,包括在maven central上找到它的位置。