标签:style io ar line amp size text rom
在调用protobuf的ParseFromString(str)方法时,默认情况下,如果str的长度>64MB,会返回失败。
这里给出了解释,主要是出于安全因素的考虑。
可以通过SetTotalBytesLimit方法去除这个限制:
// ::google::protobuf::Message req;
::google::protobuf::io::ArrayInputStream input(str.data(), str.size());
::google::protobuf::io::CodedInputStream decoder(&input);
decoder.SetTotalBytesLimit(1024*1024*1024, 64*1024*1024);
bool success = req.ParseFromCodedStream(&decoder) && decoder.ConsumedEntireMessage();
如何解析超长的protobuf zhuan,布布扣,bubuko.com
标签:style io ar line amp size text rom
原文地址:http://www.cnblogs.com/huashiyiqike/p/3874062.html