JSONPath 在 Java 中的基本用法

2022-09-01 19:09:37

我将JSON作为字符串,将JSONPath作为字符串。我想使用JSON路径查询JSON,将生成的JSON作为字符串获取。

我认为Jayway的json-path是标准。但是,在线API与您从Maven获得的实际库没有太大关系。不过,GrepCode的版本大致匹配。

看来我应该能够做到:

String originalJson; //these are initialized to actual data
String jsonPath;
String queriedJson = JsonPath.<String>read(originalJson, jsonPath);

问题在于,根据 JSONPath 实际找到的内容(例如 a 、 、 、 等)返回任何感觉最合适的内容,因此我的代码会为某些查询引发异常。假设有某种方法可以查询JSON并取回JSON,这似乎是相当合理的;有什么建议吗?readList<Object>Stringdouble


答案 1

jayway JsonPath上找到的Java JsonPath API可能已经发生了一些变化,因为上面的所有答案/评论。文档也是。只需按照上面的链接阅读 README.md,它包含一些非常清晰的使用文档IMO。

基本上,从库的当前最新版本2.2.0开始,有几种不同的方法可以实现此处请求的内容,例如:

Pattern:
--------
String json = "{...your JSON here...}";
String jsonPathExpression = "$...your jsonPath expression here..."; 
J requestedClass = JsonPath.parse(json).read(jsonPathExpression, YouRequestedClass.class);

Example:
--------
// For better readability:  {"store": { "books": [ {"author": "Stephen King", "title": "IT"}, {"author": "Agatha Christie", "title": "The ABC Murders"} ] } }
String json = "{\"store\": { \"books\": [ {\"author\": \"Stephen King\", \"title\": \"IT\"}, {\"author\": \"Agatha Christie\", \"title\": \"The ABC Murders\"} ] } }";
String jsonPathExpression = "$.store.books[?(@.title=='IT')]"; 
JsonNode jsonNode = JsonPath.parse(json).read(jsonPathExpression, JsonNode.class);

作为参考,调用'JsonPath.parse(..)'将返回类'JsonContent'的对象,实现一些接口,例如'ReadContext',其中包含几种不同的'read(..)'操作,例如上面演示的那个:

/**
 * Reads the given path from this context
 *
 * @param path path to apply
 * @param type    expected return type (will try to map)
 * @param <T>
 * @return result
 */
<T> T read(JsonPath path, Class<T> type);

希望这对任何人有所帮助。


答案 2

肯定有一种方法可以查询Json并使用JsonPath获取Json。请参阅下面的示例:

 String jsonString = "{\"delivery_codes\": [{\"postal_code\": {\"district\": \"Ghaziabad\", \"pin\": 201001, \"pre_paid\": \"Y\", \"cash\": \"Y\", \"pickup\": \"Y\", \"repl\": \"N\", \"cod\": \"Y\", \"is_oda\": \"N\", \"sort_code\": \"GB\", \"state_code\": \"UP\"}}]}";
 String jsonExp = "$.delivery_codes";
 JsonNode pincodes = JsonPath.read(jsonExp, jsonString, JsonNode.class);
 System.out.println("pincodesJson : "+pincodes);

上面的输出将是内部 Json。

[{“postal_code”:{“区”:“Ghaziabad”,“pin”:201001,“pre_paid”:“Y”,“cash”:“Y”,“pickup”:“Y”,“repl”:“N”,“cod”:“Y”,“is_oda”:“N”,“sort_code”:“GB”,“state_code”:“UP”}}]

现在,每个单独的名称/值对都可以通过迭代我们上面得到的列表(JsonNode)来解析。

for(int i = 0; i< pincodes.size();i++){
    JsonNode node = pincodes.get(i);
    String pin = JsonPath.read("$.postal_code.pin", node, String.class);
    String district = JsonPath.read("$.postal_code.district", node, String.class);
    System.out.println("pin :: " + pin + " district :: " + district );
}

输出将为:

pin :: 201001区 :: 加济阿巴德

根据您尝试解析的 Json,您可以决定是获取列表还是仅获取单个字符串/长整型值。

希望它有助于解决您的问题。