| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
11年前发布

JSON 信息抽取类库:JsonPath

JsonPath 对于 JSON 来说相当于 XPATH 对于 XML。这是一个简单的从文档中抽取指定信息的工具,提供多种语言实现版本,包括:Javascript, Java, Python 和 PHP。


给定以下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      }    }  }

读取

所有作者:

List<String> authors = JsonPath.read(json, "$.store.book[*].author");

Author of first book in store:

String author = JsonPath.read(json, "$.store.book[1].author");

所有分类="reference"的书籍

List<Object> books = JsonPath.read(json, "$.store.book[?(@.category == 'reference')]");    List<Object> books = JsonPath.read(json, "$.store.book[?]", filter(where("category").is("reference")));

项目主页:http://www.open-open.com/lib/view/home/1385715175408

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1385715175408.html
JsonPath JSON开发包