有時候需要從json里面提取相關數據,必須得用到如何提取信息的知識,下面來寫一下
語法格式
| JsonPath |
描述 |
| $ |
根節點 |
| @ |
當前節點 |
| .or[] |
子節點 |
| .. |
選擇所有符合條件的節點 |
| * |
所有節點 |
| [] |
迭代器標示,如數組下標 |
| [,] |
支持迭代器中做多選 |
| [start:end:step] |
數組切片運算符 |
| ?() |
支持過濾操作 |
| () |
支持表達式計算 |
json格式的數據:
1 { "store": { 2 "book": [ 3 { "category": "reference", 4 "author": "Nigel Rees", 5 "title": "Sayings of the Century", 6 "price": 8.95 7 }, 8 { "category": "fiction", 9 "author": "Evelyn Waugh", 10 "title": "Sword of Honour", 11 "price": 12.99, 12 "isbn": "0-553-21311-3" 13 } 14 ], 15 "bicycle": { 16 "color": "red", 17 "price": 19.95 18 } 19 } 20 }
測試代碼:
private static void jsonPathTest() {
JSONObject json = jsonTest();//調用自定義的jsonTest()方法獲得json對象,生成上面的json
//輸出book[0]的author值
String author = JsonPath.read(json, "$.store.book[0].author");
//輸出全部author的值,使用Iterator迭代
List<String> authors = JsonPath.read(json, "$.store.book[*].author");
//輸出book[*]中category == 'reference'的book
List<Object> books = JsonPath.read(json, "$.store.book[?(@.category == 'reference')]");
//輸出book[*]中price>10的book
List<Object> books = JsonPath.read(json, "$.store.book[?(@.price>10)]");
//輸出book[*]中含有isbn元素的book
List<Object> books = JsonPath.read(json, "$.store.book[?(@.isbn)]");
//輸出該json中所有price的值
List<Double> prices = JsonPath.read(json, "$..price");
//可以提前編輯一個路徑,並多次使用它
JsonPath path = JsonPath.compile("$.store.book[*]");
List<Object> books = path.read(json);
}
