亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JSON 解析神器JsonPath怎么用

發布時間:2021-12-13 19:05:34 來源:億速云 閱讀:456 作者:柒染 欄目:大數據

JSON 解析神器JsonPath怎么用,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。


語法簡介

JsonPath描述
$根節點
@當前節點
.or[]子節點
..選擇所有符合條件的節點
*所有節點
[]迭代器標示,如數組下標
[,]支持迭代器中做多選
[start:end:step]數組切片運算符
?()支持過濾操作
()支持表達式計算

JSON 值:

JSON 解析神器JsonPath怎么用

導包:import com.jayway.jsonpath.JsonPath

解析代碼:

//輸出book[0]的author值String author = JsonPath.read(json, "$.store.book[0].author");System.out.println("author\t"+author);
//輸出全部author的值,使用Iterator迭代List
<String> authors = JsonPath.read(json, "$.store.book[*].author");System.out.println("authors\t"+authors);
//輸出book[*]中category == 'reference'的bookList<Object> books = JsonPath.read(json, "$.store.book[?(@.category == 'reference')]");
System.out.println("books\t"+books);
//輸出book[*]中category == 'reference'的book或者List<Object> books2 = JsonPath.read(json, "$.store.book[?(@.category == 'reference' || @.price>10)]");
System.out.println("books2\t"+books2);
//輸出book[*]中category == 'reference'的book的authorList<Object> books1 = JsonPath.read(json, "$.store.book[?(@.category == 'reference')].author");
System.out.println("books1\t"+books1);
//輸出book[*]中price>10的bookList<Object> b1 = JsonPath.read(json, "$.store.book[?(@.price>10)]");
System.out.println("b1"+b1);
//輸出book[*]中含有isbn元素的bookList<Object> b2 = JsonPath.read(json, "$.store.book[?(@.isbn)]");
System.out.println("b2"+b2);
//輸出該json中所有price的值List<Double> prices = JsonPath.read(json, "$..price");
System.out.println("prices"+prices);
//輸出該json中所有title的值List<Double> title = JsonPath.read(json, "$..title");
System.out.println("title"+title);
//輸出該json中book 0,1的值List<Double> book01 = JsonPath.read(json, "$..book[0,1]");
System.out.println("book01"+book01);
/* //輸出該json中book 0,1的值List<Double> book012 = JsonPath.read(json, "$..book[-2:]");
System.out.println("book012"+book012);
*///可以提前編輯一個路徑,并多次使用它JsonPath path = JsonPath.compile("$.store.book[*]");
List<Object> b3 = path.read(json);System.out.println("path\t"+path+"\n"+b3);

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凤庆县| 东至县| 罗平县| 古丈县| 潼关县| 马鞍山市| 石城县| 永定县| 保亭| 四会市| 囊谦县| 六安市| 蕉岭县| 永平县| 阜南县| 佛山市| 安龙县| 西和县| 内丘县| 尉氏县| 四川省| 桐柏县| 监利县| 义马市| 衡阳市| 元谋县| 江油市| 宣城市| 松阳县| 石首市| 石狮市| 宜城市| 兴山县| 榕江县| 平和县| 威信县| 普宁市| 鄂尔多斯市| 交城县| 皋兰县| 广东省|