超详细的C++与java使用protobuf进行数据交互
1、安装环境 客户端idea,服务端c++,服务端需要linux环境,可以使用远程服务器获取虚拟机都可以 2、服务端准备 需要安装protobuf环境
安装需要的依赖包:
yum -y install autoconf automake libtool curl make g++ unzip
unzip protobuf-master.zip
cd protobuf-master
./autogen.sh
./configure
make
make check
make install
最后查看版本
protoc --version
2、创建用来交换数据格式 infor.proto文件
syntax = "proto2";
message my_message{
required string startedTime =1;
required string version=2;
共有 0 条评论