Protobuf对比XML、Json等其他序列化的优势
protobuf
jackson
xstream
Serializable
hessian2
hessian2压缩
hessian1
序列化(单位ns)
1154
5421
92406
10189
26794
100766
29027
反序列化(单位ns)
1334
8743
117329
64027
37871
188432
37596
bytes
97
311
664
824
374
283
495
准备环境:
1,Python版本3.5.4
2,Protobuf版本3.7.0
3,Protobuf安装包:protoc-3.7.0-rc1-win64.zip
4,Win10 64位系统
步骤:
【下载protoc】
https://github.com/google/protobuf/releases
根据自己的平台下载对应的编译器,我的是win10-64位,所以下载 protoc-3.7.0-rc1-win64.zip
设置环境变量:这一步使你在本地任何地方使用protoc这个指令
(右击“此电脑”。。。)
测试protoc:
新打开一个命令行:输入protoc --version,如果将输出版本号,说明protoc安装好了
【编写.proto协议文件】
新建一个protobuf文件夹,手动创建test2.proto文件:
并在test2.proto中输入:
syntax = "proto2";
message testinfo
{
required int32 devtype = 1;
required int32 devid = 2;
required int32 unitid = 3;
required int32 chlid = 4;
optional int32 testid = 5 [default = 0];
required bytes stepdata = 6;
}
【编译】:
打开命令行,切换到protobuf文件夹下下面,执行protoc --python_out=./ test2.proto
然后会生成一个python文件
在目录下新建文件 test.py,写入代码
import test2_pb2
testinfo = test2_pb2.testinfo()
testinfo.devtype = 100
testinfo.devid = 2
testinfo.unitid = 3
testinfo.chlid = 4
testinfo.testid = 250
testinfo.stepdata = b'abd'
print(testinfo, testinfo.devtype) # 打印 protobuf 结构的内容
out = testinfo.SerializeToString()
print(out) # 打印 Protobuf 序列字符串
decode = test2_pb2.testinfo()
decode.ParseFromString(out)
print(decode) # 打印 解析Protobuf后的内容
运行python代码,得到以下结果,证明实验成功!
手机扫一扫
移动阅读更方便
你可能感兴趣的文章