-
Notifications
You must be signed in to change notification settings - Fork 9
/
JsonPath.java
74 lines (64 loc) · 2.6 KB
/
JsonPath.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package example11;
import java.util.List;
import com.shimizukenta.jsonhub.JsonHub;
import com.shimizukenta.jsonhub.JsonPathParseException;
public class JsonPath {
public JsonPath() {
/* Nothing */
}
public static void main(String[] args) {
String 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\": 19.95 "
+ " } "
+ " } "
+ "} ";
JsonHub jh = JsonHub.fromJson(json);
tryJsonPath(jh, "$.store.book[*].author");
tryJsonPath(jh, "$..author");
tryJsonPath(jh, "$.store.*");
tryJsonPath(jh, "$.store..price");
tryJsonPath(jh, "$..book[2]");
tryJsonPath(jh, "$..book[-1]");
tryJsonPath(jh, "$..book[:2]");
}
private static void tryJsonPath(JsonHub jh, String jsonPath) {
try {
System.out.println("JsonPath: \"" + jsonPath + "\"");
List<JsonHub> ll = jh.jsonPath(jsonPath);
System.out.println("result length: " + ll.size());
ll.forEach(x -> {
System.out.println(x.prettyPrint());
});
System.out.println();
}
catch (JsonPathParseException e) {
e.printStackTrace();
}
}
}