BSON 的 Java 开发包 ebson
- 授权协议: MIT
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/kohanyirobert/ebson
- 软件文档: https://github.com/kohanyirobert/ebson
软件介绍
ebson 是一个可扩展的 BSON 文档 Java 开发包。
Maven:
<dependency> <groupId>com.github.kohanyirobert</groupId> <artifactId>ebson</artifactId> <version>...</version> </dependency>
示例代码:
// create documents to serialize
BsonDocument document = BsonDocuments.of("key", new Date());
// grab a little-endian byte buffer
ByteBuffer buffer = ByteBuffer.allocate(32).order(ByteOrder.LITTLE_ENDIAN);
// use the documents utility class to write the document into the buffer
BsonDocuments.writeTo(buffer, document);
// use the serialized data
buffer.flip();
UNIX网络编程
史蒂文斯、芬纳、鲁道夫 / 杨继张 / 清华大学出版社 / 2006-1 / 98.00元
《UNIX网络编程》(第1卷)(套接口API第3版)第1版和第2版由已故UNIX网络专家W. Richard Stevens博士独自编写。《UNIX网络编程》(第1卷)(套接口API第3版)是3版,由世界著名网络专家Bill Fenner和Andrew M. Rudoff执笔,根据近几年网络技术的发展,对上一版进行全面修订,增添了IPv6的更新过的信息、SCTP协议和密钥管理套接口的内容,删除了X......一起来看看 《UNIX网络编程》 这本书的介绍吧!
