JSONPath小试牛刀之Snack3
2019-11-29 16:00:58来源:博客园 阅读 ()
JSONPath小试牛刀之Snack3
最近在网上看了些
JSONPath
的入门例子。打算用Snack3
这个框架写写例子。json path
对`JSON的处理绝对是神器。
1.准备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,
"isbn": "0-553-21311-3"
}],
"bicycle": {
"color": "red",
"price": 19.95
}
}
}
2.Meven 依赖
<dependency>
<groupId>org.noear</groupId>
<artifactId>snack3</artifactId>
<version>3.1.5.3</version>
</dependency>
3.示例代码
@Test
public void demo1() {
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,\"isbn\":\"0-553-21311-3\"}],\"bicycle\":{\"color\":\"red\",\"price\":19.95}}}";
ONode n = ONode.load(json);
Map map = n.select("$.store.book[0]").toObject(Map.class);
System.out.println("category: " + map.get("category"));
System.out.println("author: " + map.get("author"));
System.out.println("title: " + map.get("title"));
System.out.println("price: " + map.get("price"));
System.out.println("========================");
List<String> list = n.select("$.store.book[*].author").toObject(List.class);
for (String author : list) {
System.out.println(author);
}
//java bean 泛型输出,此处不打印了
List<BookModel> list2 = n.select("$.store.book")
.toObject((new ArrayList<BookModel>(){}).getClass());
}
4.控制台打印结果
category: reference
author: Nigel Rees
title: Sayings of the Century
price: 8.95
========================
Nigel Rees
Evelyn Waugh
原文链接:https://www.cnblogs.com/noear/p/11959034.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- alibaba/fastjson 之 JSONPath 2019-05-22
- JAVA新手小试牛刀之遍历递归树求递推数列通项 2018-06-18
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash