ZBLOG

使用类似void jsonToYaml(const json& jsonData, YAML::Emitter& emitter) { if (jsonData.is_object()) { emitter

您提供的代码看起来是使用 nlohmann/json 库和 yaml-cpp 库进行 JSON 到 YAML 的转换。这个递归函数 jsonToYaml 接受一个 json 对象和一个 YAML::Emitter,将 JSON 转换为对应的 YAML。

下面是完整示例代码:

#include <iostream>
#include <fstream>
#include <yaml-cpp/yaml.h>
#include <nlohmann/json.hpp>

using json = nlohmann::json;

void jsonToYaml(const json& jsonData, YAML::Emitter& emitter)
{
    if (jsonData.is_object())
    {
        emitter << YAML::BeginMap;
        for (auto it = jsonData.begin(); it != jsonData.end(); ++it)
        {
            emitter << YAML::Key << it.key();
            jsonToYaml(it.value(), emitter);
        }
        emitter << YAML::EndMap;
    }
    else if (jsonData.is_array())
    {
        emitter << YAML::BeginSeq;
        for (const auto& item : jsonData)
        {
            jsonToYaml(item, emitter);
        }
        emitter << YAML::EndSeq;
    }
    else
    {
        // Scalar value
        emitter << jsonData.get<json::string_t>();
    }
}

int main()
{
    json jsonData = R"(
        {
            "name": "全府员公多市面",
            "applications": 1,
            "notes": "laborum",
            "generate": [
                {
                    "incentive_id": 1,
                    "node_id": 1,
                    "data_struct_number": "74"
                }
            ]
        })"_json;

    YAML::Emitter yamlEmitter;
    jsonToYaml(jsonData, yamlEmitter);

    std::ofstream file("output.yaml");
    file << yamlEmitter.c_str();
    file.close();

    return 0;
}

请确保在编译时链接并包含所需的库,yaml-cpp 和 nlohmann/json。以上示例代码将 JSON 数据转换为 YAML,并将结果写入到 output.yaml 文件中。


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=17255

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?