C++中protobuf Message与JSON的互相转换

C++中protobuf Message与JSON的互相转换

环境:

protobuf: v27.3(2024-08-01)
abseil: 20240722.0

文章目录

  • [C++中protobuf Message与JSON的互相转换](#C++中protobuf Message与JSON的互相转换)
    • 前言
    • [1. 编写通讯录addressbook.proto](#1. 编写通讯录addressbook.proto)
    • [2. 编译](#2. 编译)
    • [3. C++中测试protobuf与json的转换](#3. C++中测试protobuf与json的转换)
    • [4. 结果](#4. 结果)

前言

PB转JSON:Protocol Buffers的Message对象转换为 JSON 格式字符串

JSON转PB:JSON格式字符串解析为 Protocol Buffers 的Message对象

protobuf中可以通过MessageToJsonString和JsonStringToMessage函数完成上述转换。

注意:MessageToJsonString和JsonStringToMessage函数仅支持Message对象,不支持MessageLite对象(后面会介绍MessageLite和JSON的转换)。

1. 编写通讯录addressbook.proto

syntax = "proto3";

package com.test;

message Person {
  string name = 1;
  int32 age = 2;
  string phone = 3;
}

message AddressBook{
    repeated Person people = 1;
}

2. 编译

protoc -I=. --cpp_out=. addressbook.proto

tree
.
+--- addressbook.pb.cc
+--- addressbook.pb.h
+--- addressbook.proto
+--- protoc.exe

3. C++中测试protobuf与json的转换

main.cpp

#include <iostream>

#include <google/protobuf/util/json_util.h> // MessageToJsonString JsonStringToMessage

#include "addressbook.pb.h"

int main(int argc, char *argv[])
{
    com::test::AddressBook addressbook1;
    com::test::Person* person1 = addressbook1.add_people();
    person1->set_name("xiaoming");
    person1->set_age(30);
    person1->set_phone("13012345678");

    // PB to JSON
    std::string result1;
    google::protobuf::json::MessageToJsonString(addressbook1, &result1);
    std::cout << "AddressBook From PB - " << result1 << std::endl;

    // JSON to PB
    std::string jsonStr = R"({"people":[{"name":"xiaohong","age":31,"phone":"13112345678"}]})";
    com::test::AddressBook addressbook2;
    google::protobuf::json::JsonStringToMessage(jsonStr, &addressbook2);

    std::string result2;
    google::protobuf::json::MessageToJsonString(addressbook2, &result2);
    std::cout << "AddressBook From JSON - " << result2 << std::endl;

    getchar();
    return 0;
}

CMakeLists.txt

cmake_minimum_required(VERSION 3.10)

project(main)

include_directories(.) # addressbook.pb.h

# protobuf
add_definitions(-DPROTOBUF_USE_DLLS)
include_directories(include)
link_directories(lib)

add_executable(${PROJECT_NAME} main.cpp addressbook.pb.cc)

target_link_libraries(${PROJECT_NAME} libprotobuf abseil_dll)

目录结构

tree
.
+--- include
+--- lib
+--- addressbook.pb.cc
+--- addressbook.pb.h
+--- addressBook.proto
+--- CMakeLists.txt
+--- main.cpp

4. 结果

AddressBook From PB - {"people":[{"name":"xiaoming","age":30,"phone":"13012345678"}]}
AddressBook From Json - {"people":[{"name":"xiaohong","age":31,"phone":"13112345678"}]}
相关推荐
mit6.82415 小时前
What is Json?
c++·学习·json
小安同学iter2 天前
Web开发 -前端部分-HTML5新特性
javascript·css·正则表达式·json·css3·html5
我真不会起名字啊2 天前
“深入浅出”系列之C++:(10)nlohmann Json库
json
今晚打老虎2 天前
迷宫1.1
c
Watermelo6172 天前
使用JSONObject.getString()时报错:Cannot resolve method ‘getString‘ in ‘JSONObject‘,详解JSONObject三种库的用法
java·开发语言·spring boot·后端·java-ee·json·springboot
快乐觉主吖2 天前
使用Newtonsoft.Json插件,打包至Windows平台显示不支持
unity·json
步、步、为营3 天前
C#中System.Text.Json:从入门到精通的实用指南
macos·c#·json·asp.net
放下华子我只抽RuiKe53 天前
Vue进阶之旅:组件通信与高级用法深度剖析(组件通信&进阶用法)
前端·javascript·vue.js·前端框架·node.js·json·html5
刘争Stanley4 天前
Android系统开发(八):从麦克风到扬声器,音频HAL框架的奇妙之旅
android·c语言·framework·音视频·框架·c·hal
玉面小君4 天前
C# 数据拟合教程:使用 Math.NET Numerics 的简单实现
算法·c#·c·数据拟合