我正在使用 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;
}
基于这个问题,我看到该put
方法替换了该节点上的任何内容,而不是添加新的。这正是我所看到的功能:
输出.xml
<?xml version="1.0" encoding="utf-8"?>
<spreadsheet>
<cell>
<name>a2</name>
<contents>adsf</contents>
</cell>
</spreadsheet>
输出2.xml
<?xml version="1.0" encoding="utf-8"?>
<spreadsheet>
<cell>
<name>d2</name>
<contents>=d6</contents>
</cell>
</spreadsheet>
查看文档,我看到了这种add_child
方法Add the node at the given path. Create any missing parents. If there already is a node at the path, add another one with the same key.
我不太清楚如何使用该add_child
方法,有人可以解释如何使用它吗?
有没有更好的方法来实现我想要的文件格式?