gpt4 book ai didi

c++ - 将具有相同键的节点添加到属性树

转载 作者:可可西里 更新时间:2023-11-01 18:16:11 28 4
gpt4 key购买 nike

我正在使用 Boost 的属性树来读取和写入 XML。使用我制作的电子表格应用程序,我想将电子表格的内容保存到 xml 中。这是一项学校作业,因此我需要对 XML 使用以下格式:

<?xml version="1.0" encoding="UTF-8"?>
<spreadsheet>
<cell>
<name>A2</name>
<contents>adsf</contents>
</cell>
<cell>
<name>D6</name>
<contents>345</contents>
</cell>
<cell>
<name>D2</name>
<contents>=d6</contents>
</cell>
</spreadsheet>

我写的一个简单的测试程序:

int main(int argc, char const *argv[])
{
boost::property_tree::ptree pt;

pt.put("spreadsheet.cell.name", "a2");
pt.put("spreadsheet.cell.contents", "adsf");

write_xml("output.xml", pt);

boost::property_tree::ptree ptr;
read_xml("output.xml", ptr);

ptr.put("spreadsheet.cell.name", "d6");
ptr.put("spreadsheet.cell.contents", "345");
ptr.put("spreadsheet.cell.name", "d2");
ptr.put("spreadsheet.cell.contents", "=d6");

write_xml("output2.xml", ptr);

return 0;
}

基于此question我看到 put 方法替换了那个节点上的任何东西,而不是添加一个新的。这正是我看到的功能:

输出.xml

<?xml version="1.0" encoding="utf-8"?>
<spreadsheet>
<cell>
<name>a2</name>
<contents>adsf</contents>
</cell>
</spreadsheet>

Output2.xml

<?xml version="1.0" encoding="utf-8"?>
<spreadsheet>
<cell>
<name>d2</name>
<contents>=d6</contents>
</cell>
</spreadsheet>

查看 documentation我看到了这个 add_child 方法,它将在给定路径上 添加节点。创建任何丢失的 parent 。如果路径上已经有一个节点,则添加另一个具有相同键的节点。

我不太明白如何使用 add_child 方法,有人可以解释一下如何使用它吗?

是否有更好的方法来实现我想要的文件格式?

最佳答案

add_child 成员函数允许您将一个 property_tree 作为子节点插入到另一个的 DOM 中。如果您提供的 key 路径已经存在,将添加一个重复的 key ,并将 child 插入那里。如果我们稍微改变一下您的示例,我们就可以检查结果。

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

int main()
{
// Create the first tree with two elements, name and contents
boost::property_tree::ptree ptr1;
ptr1.put("name", "a2");
ptr1.put("contents", "adsf");

// Create the a second tree with two elements, name and contents
boost::property_tree::ptree ptr2;
ptr2.put("name", "d6");
ptr2.put("contents", "345");

// Add both trees to a third and place them in node "spreadsheet.cell"
boost::property_tree::ptree ptr3;
ptr3.add_child("spreadsheet.cell", ptr1);
ptr3.add_child("spreadsheet.cell", ptr2);

boost::property_tree::write_xml("output.xml", ptr3);

return 0;
}

当您第一次调用 add_child 时,关键字“spreadsheet.cell”的节点不存在,因此被创建。然后它将树的内容(namecontents)添加到新创建的节点。当您第二次调用 add_child 时,它会发现“spreadsheet.cell”已经存在,但与 put 不同的是,它会创建一个也称为“cell”的兄弟节点,并同时将其插入位置。

最终输出:

<?xml version="1.0" encoding="utf-8"?>
<spreadsheet>
<cell>
<name>a2</name>
<contents>adsf</contents>
</cell>
<cell>
<name>d6</name>
<contents>345</contents>
</cell>
</spreadsheet>

关于c++ - 将具有相同键的节点添加到属性树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16136605/

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