C ++ / RapidXML:编辑节点并写入新的XML文件没有更新的节点

时间:2017-07-18 14:49:58

标签: c++ rapidxml

我正在解析XML中的string文件。 我的节点Idbar,我想将其更改为foo,然后写入文件。

写入文件后,该文件仍然是bar,而不是foo

#include "rapidxml.hpp"
#include "rapidxml_print.hpp"
void main()
{
    std::string newXml = "<?xml version=\"1.0\" encoding=\"UTF - 8\"?><Parent><FileId>fileID</FileId><IniVersion>2.0.0</IniVersion><Child><Id>bar</Id></Child></Parent>";

    xml_document<> doc;
    xml_node<> * root_node;

    std::string str = newXml;
    std::vector<char> buffer(str.begin(), str.end());
    buffer.push_back('\0');

    doc.parse<0>(&buffer[0]);

    root_node = doc.first_node("Parent");

    xml_node<> * node = root_node->first_node("Child");
    xml_node<> * xml = node->first_node("Id");
    xml->value("foo"); // I want to change my id from bar to foo!!!!

    std::ofstream outFile("output.xml");
    outFile << doc; // after I write to file, I still see the ID as bar
}

我在这里缺少什么?

1 个答案:

答案 0 :(得分:1)

问题出在数据布局上。在node_element节点xml下,还有另一个node_data节点包含"bar"。 您发布的代码也无法编译。在这里,我编写了代码并确实展示了如何解决它:

#include <vector>
#include <iostream>
#include "rapidxml.hpp"
#include "rapidxml_print.hpp"

int main()
{
    std::string newXml = "<?xml version=\"1.0\" encoding=\"UTF - 8\"?><Parent><FileId>fileID</FileId><IniVersion>2.0.0</IniVersion><Child><Id>bar</Id></Child></Parent>";

    rapidxml::xml_document<> doc;

    std::string str = newXml;
    std::vector<char> buffer(str.begin(), str.end());
    buffer.push_back('\0');

    doc.parse<0>(&buffer[0]);

    rapidxml::xml_node<>* root_node = doc.first_node("Parent");

    rapidxml::xml_node<>* node = root_node->first_node("Child");
    rapidxml::xml_node<>* xml = node->first_node("Id");
    // xml->value("foo"); // does change something that isn't output!!!!

    rapidxml::xml_node<> *real_thing = xml->first_node();
    if (real_thing != nullptr                         // these checks just demonstrate that
       &&  real_thing->next_sibling() == nullptr      // it is there and how it is located
       && real_thing->type() == rapidxml::node_data)  // when element does contain text data 
    {
        real_thing->value("yuck");  // now that should work
    }

    std::cout << doc; // lets see it
}

所以输出:

<Parent>
    <FileId>fileID</FileId>
    <IniVersion>2.0.0</IniVersion>
    <Child>
        <Id>yuck</Id>
    </Child>
</Parent>

请参阅?请注意,在解析期间如何布置数据取决于您提供给解析的标志。例如,如果您首先放置doc.parse<rapidxml::parse_fastest>,那么解析器将不会创建此类node_data节点,然后更改node_element数据(就像您首次尝试的那样)将起作用(我上面所做的不会)。阅读manual

中的详细信息