下面请跟着图老师小编一起来了解下基于Protobuf C++ serialize到char*的实现方法分析,精心挑选的内容希望大家喜欢,不要忘记点个赞哦!
【 tulaoshi.com - 编程语言 】
protobuf的Demo程序是
C++版本的protubuf有几种serialize和unSerialize的方法:
方法一:
官方demo程序采用的是
代码如下:
// Write the new address book back to disk.
fstream output(argv[1], ios::out | ios::trunc | ios::binary);
if (!address_book.SerializeToOstream(&output)) {
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)cerr "Failed to write address book." endl;
return -1;
}
// Read the existing address book.
fstream input(argv[1], ios::in | ios::binary);
if (!input) {
cout argv[1] ": File not found. Creating a new file." endl;
} else if (!address_book.ParseFromIstream(&input)) {
cerr "Failed to parse address book." endl;
return -1;
}
上面采用的是fstream,把数据序列(反序列)打磁盘文件中。
而如果想序列到char *,并且通过socket传输,则可以使用:
方法二:
代码如下:
int size = address_book.ByteSize();
void *buffer = malloc(size);
address_book.SerializeToArray(buffer, size);
方法三:
代码如下:
使用ostringstream ,
std::ostringstream stream;
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)address_book.SerializeToOstream(&stream);
string text = stream.str();
char* ctext = string.c_str();
来源:http://www.tulaoshi.com/n/20160219/1590770.html
看过《基于Protobuf C++ serialize到char*的实现方法分析》的人还看了以下文章 更多>>