中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

孙吴县| 抚远县| 县级市| 新邵县| 五峰| 奇台县| 稻城县| 梁河县| 凌海市| 江安县| 清水河县| 广宁县| 安丘市| 大足县| 裕民县| 新沂市| 新巴尔虎右旗| 扶风县| 钟祥市| 黄梅县| 东城区| 隆尧县| 兴文县| 修武县| 安达市| 永善县| 离岛区| 河津市| 甘孜县| 桐城市| 临清市| 类乌齐县| 丹江口市| 灵丘县| 三穗县| 天门市| 大渡口区| 丰都县| 巴塘县| 宜良县| 沛县|