部分消息使用协议缓冲区java api进行序列化

时间:2015-08-11 07:09:52

标签: protocol-buffers

我想部分地序列化以下消息,即我想序列化前三个属性id,name,companyName,并且不想序列化年龄。

我正在使用Protocol Buffer Java API。

message Person{
required int32 id = 1;
required string name = 2;
optional string companyName = 3;
`optional int32 age = 3;`

}

有人可以帮助我吗?

Reetesh

0 个答案:

没有答案