重新提交项目说明文件,并且将说明文件的格式修改为 adoc 文件格式
This commit is contained in:
parent
4b283adf9a
commit
69c29e09f5
|
@ -0,0 +1,16 @@
|
|||
= Protocol Buffers Java 示例程序
|
||||
|
||||
我们是在实际的数据处理的时候,需要使用 JSON 来序列化数据,但是又考虑到 JSON 在传输的时候数据过大,同时还有很多并不需要的垃圾文件。
|
||||
我们才考虑到了 Protocol Buffer 提供的功能。
|
||||
|
||||
image::https://docs.ossez.com/protocol-buffers-docs/images/protocol-buffers-logo.jpg[]
|
||||
|
||||
== 相关文档和资料
|
||||
* https://www.cwiki.us/display/ProtocolBuffers/Protocol+Buffers - cwiki.us 的 Protocol Buffer WIKI
|
||||
* http://docs.ossez.com/protocol-buffers-docs/index.html - Protocol Buffer 技术资料
|
||||
|
||||
== 数据序列化和反序列化
|
||||
* 序列化: 将数据结构或对象转换成二进制串的过程。
|
||||
* 反序列化:将在序列化过程中所生成的二进制串转换成数据结构或者对象的过程。
|
||||
|
||||
image::https://docs.ossez.com/protocol-buffers-docs/images/protocol-buffers-serialization.png[]
|
11
README.md
11
README.md
|
@ -1,11 +0,0 @@
|
|||
# Protocol Buffers Example in Java
|
||||
|
||||
This is a companion repository for my [Protocol Buffers course](http://bit.ly/protocol-buffers-github)
|
||||
|
||||
[![course logo](https://i.imgur.com/8fFmWAV.png)](http://bit.ly/protocol-buffers-github)
|
||||
|
||||
# Content
|
||||
|
||||
- Sample Code
|
||||
- Proper Gradle Setup
|
||||
- Few .proto files
|
Loading…
Reference in New Issue