由于与我正在处理的项目相关的原因,我希望将JSON文件的整个查询保存为字符串,例如$.store.book[*].title
(而不是必须存储每个级别的该文件暂时作为单独的对象)。
我目前正在使用JsonPath(版本0.8.0,这是我能找到的最新版本),这基本上就是我正在寻找的,但是我得到了如下所示的异常。我只是使用JsonPath谷歌代码页上给出的示例JSON,使用他们的一个示例查询。
我在这里做错了什么?或者,如果没有解决方案,Java中是否有JsonPath的替代方案?我希望能够将整个查询作为字符串传递,并且它必须是Java。
功能:
public void testJsonPath() throws Exception
{
String query = "$.store.book[*].title";
List toRet = (List) JsonPath.read(practiceJson, query, new Filter[0]);
System.out.println(toRet.toString());
}
例外:
java.lang.NoClassDefFoundError: net/minidev/json/parser/ParseException
at com.jayway.jsonpath.spi.JsonProviderFactory$1.create(JsonProviderFactory.java:27)
at com.jayway.jsonpath.spi.JsonProviderFactory.createProvider(JsonProviderFactory.java:32)
at com.jayway.jsonpath.JsonPath.read(JsonPath.java:202)
at com.jayway.jsonpath.JsonPath.read(JsonPath.java:307)
at net.windward.datasource.test.TestJsonDataSource.testJsonPath(TestJsonDataSource.java:119)
练习JSON:
private String practiceJson = "{\n" +
" \"store\": {\n" +
" \"book\": [ {\n" +
" \"category\": \"reference\",\n" +
" \"author\": \"Nigel Rees\",\n" +
" \"title\": \"Sayings of the Century\",\n" +
" \"price\": 8.95\n" +
" }, {\n" +
" \"category\": \"fiction\",\n" +
" \"author\": \"Evelyn Waugh\",\n" +
" \"title\": \"Sword of Honour\",\n" +
" \"price\": 12.99\n" +
" }, {\n" +
" \"category\": \"fiction\",\n" +
" \"author\": \"Herman Melville\",\n" +
" \"title\": \"Moby Dick\",\n" +
" \"isbn\": \"0-553-21311-3\",\n" +
" \"price\": 8.99\n" +
" }, {\n" +
" \"category\": \"fiction\",\n" +
" \"author\": \"J. R. R. Tolkien\",\n" +
" \"title\": \"The Lord of the Rings\",\n" +
" \"isbn\": \"0-395-19395-8\",\n" +
" \"price\": 22.99\n" +
" } ],\n" +
" \"bicycle\": [ {\n" +
" \"color\": \"red\",\n" +
" \"price\": 19.95,\n" +
" \"style\": [ \"city\", \"hybrid\" ]\n" +
" }, {\n" +
" \"color\": \"blue\",\n" +
" \"price\": 59.91,\n" +
" \"style\": [ \"downhill\", \"freeride\" ]\n" +
" } ]\n" +
" }\n" +
"}";
答案 0 :(得分:18)
我认为您必须将这些依赖项添加到您的项目中: https://code.google.com/p/json-path/downloads/detail?name=json-path-0.8.0-dependencies.zip&can=2&q=
特别是包含缺少的Exception类的json-smart-1.1.jar。
答案 1 :(得分:13)
如果您使用 Maven 或 Gradle ,只需将其添加到您的依赖项列表中:
对于Maven项目:
在 Maven pom.xml 文件中:
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.2.0</version>
<scope>test</scope>
</dependency>
对于Gradle项目:
Gradle build.gradle 文件中的依赖关系部分
testCompile 'com.jayway.jsonpath:json-path:2.2.0'
应该有效
答案 2 :(得分:1)
当json-smart
版本存在冲突时,如果选择的旧版本没有预期的类。
如何修复
使用mvn dependency:tree
验证版本。
下面,net.minidev:json-smart:jar:1.1.1:compile
和com.jayway.jsonpath:json-path:jar:1.1.0:test
使用最新版本的json-smart
。
$ mvn clean dependency:tree | grep json
[INFO] +- net.logstash.log4j:jsonevent-layout:jar:1.7:compile
[INFO] | +- net.minidev:json-smart:jar:1.1.1:compile
[INFO] | +- io.spray:spray-json_2.11:jar:1.3.3:compile
[INFO] | +- org.json:json:jar:20160810:compile
[INFO] +- com.github.fge:json-schema-validator:jar:2.2.6:compile
[INFO] | +- com.github.fge:json-schema-core:jar:1.2.5:compile
[INFO] | | +- org.skyscreamer:jsonassert:jar:1.4.0:test
[INFO] | | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO] +- com.jayway.jsonpath:json-path:jar:1.1.0:test
[INFO] | | | | +- io.gatling:jsonpath_2.10:jar:0.6.1:test
[INFO] | | | | +- io.fastjson:boon:jar:0.28:test
因此,将json-smart
的旧版本从依赖项中排除,因为json-path
具有最新版本的json-smart
。
例如
<dependency>
<groupId>net.logstash.log4j</groupId>
<artifactId>jsonevent-layout</artifactId>
<version>1.7</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>net.minidev</groupId>
<artifactId>json-smart</artifactId>
</exclusion>
</exclusions>
</dependency>