JSON 解析和生成器 Argo
- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://argo.sourceforge.net/
- 软件文档: http://argo.sourceforge.net/documentation.html
软件介绍
Argo 是一个 Java 开发的遵循 RFC 7159 的 JSON 解析器和生成器。提供三个解析接口(推、拉和 DOM 风格解析器)。特点是易用、线程安全、快速。
Maven
<!-- https://mvnrepository.com/artifact/net.sourceforge.argo/argo --> <dependency> <groupId>net.sourceforge.argo</groupId> <artifactId>argo</artifactId> <version>5.2</version> </dependency>
示例代码:
String secondSingle = new JdomParser().parse(jsonText)
.getStringValue("singles", 1);Data Structures and Algorithms
Alfred V. Aho、Jeffrey D. Ullman、John E. Hopcroft / Addison Wesley / 1983-1-11 / USD 74.20
The authors' treatment of data structures in Data Structures and Algorithms is unified by an informal notion of "abstract data types," allowing readers to compare different implementations of the same......一起来看看 《Data Structures and Algorithms》 这本书的介绍吧!
