91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

淳化县| 松阳县| 汝州市| 恭城| 巴里| 泰州市| 宿州市| 深水埗区| 溧水县| 桓台县| 双辽市| 墨玉县| 尼玛县| 沂南县| 德化县| 黔东| 绥芬河市| 韶关市| 甘孜| 基隆市| 兖州市| 马公市| 元江| 多伦县| 盱眙县| 莒南县| 绥宁县| 桐城市| 张家港市| 灯塔市| 巍山| 札达县| 会同县| 明水县| 宜宾县| 抚州市| 乐都县| 湘潭县| 策勒县| 赣榆县| 绥宁县|