标签: 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