gpt4 book ai didi

c++ - 添加子子节点以 boost ptree

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:51:41 26 4
gpt4 key购买 nike

假设我的目标是创建以下形式的 xml:

<main>
<elements>
<element name="elem1"><temp/>
</element>
<element name="elem2"><temp/>
</element>
</elements>
</main>

我有以下代码:

ptree pt;
pt.put("main","");

ptree temp1;
temp1.put("element","");
temp1.put("element.<xmlattr>.name","elem1");
temp1.put("element.temp");

ptree temp2;
temp2.put("element","");
temp2.put("element.<xmlattr>.name","elem2");
temp2.put("element.temp");

//temp1 represents the 1st <element>...</element>
//temp2 represents the 1st <element>...</element>

//Add temp1 and temp2 to <main> under <elements>

我会假设以下会起作用:

pt.add_child("main.elements",temp1);
pt.add_child("main.elements",temp2);

但是这会生成以下 xml:

<main>
<elements>
<element name="elem1"><temp/>
</element>
</elements>
<elements>
<element name="elem2"><temp/>
</element>
<elements>
</main>

我能够通过以下形式制作我的 temp1 来获取所需的 xml 文件:

temp1.put("<xmlattr>.name","elem1");
temp1.put("temp","");
temp2.put("<xmlattr>.name","elem2");
temp2.put("temp","");
pt.add_child("main.elements.element",temp1);
pt.add_child("main.elements.element",temp2);

有没有一种方法可以使用我的初始 temp1 和 temp2 节点来获得所需的 xml 结构?

最佳答案

您的情况有点不太理想(我非常喜欢您提供的工作片段)。

这是可行的:

pt.add_child("main.elements.element", temp1.get_child("element"));
pt.add_child("main.elements.element", temp2.get_child("element"));

Live On Coliru

#include <boost/property_tree/xml_parser.hpp>
#include <iostream>

using boost::property_tree::ptree;

int main() {
ptree temp1;
temp1.put("element.<xmlattr>.name","elem1");
temp1.put_child("element.temp", {});

ptree temp2;
temp2.put("element.<xmlattr>.name","elem2");
temp2.put("element.temp", "");

//Add temp1 and temp2 to <main> under <elements>
ptree pt;
pt.add_child("main.elements.element", temp1.get_child("element"));
pt.add_child("main.elements.element", temp2.get_child("element"));
write_xml(std::cout, pt, boost::property_tree::xml_writer_make_settings<std::string>(' ', 4, "utf-8"));
}

打印

<?xml version="1.0" encoding="utf-8"?>
<main>
<elements>
<element name="elem1">
<temp/>
</element>
<element name="elem2">
<temp/>
</element>
</elements>
</main>

关于c++ - 添加子子节点以 boost ptree,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36021806/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com