Rapidxml和开始标记

时间:2013-10-23 13:56:26

标签: c++ xml eclipse rapidxml

我在使用rapidxml时遇到了一些问题。当我编译我的代码时,没有包含开始标记..非常感谢所有的帮助

    int main(){


    xml_document<> doc;
    //xml declaration
    xml_node<>* decl = doc.allocate_node(node_declaration);
    decl->append_attribute(doc.allocate_attribute("version","1.0"));
    decl->append_attribute(doc.allocate_attribute("encoding", "utf-8"));
        doc.append_node(decl);
     // root node
        xml_node<>* root = doc.allocate_node(node_element, "root");
        root->append_attribute(doc.allocate_attribute(""));
                    doc.append_node(root);
                // child/sibling node
        xml_node<>* sibling0 = doc.allocate_node(node_element, "old");
        root->append_node(sibling0);
        xml_node<>* sibling = doc.allocate_node(node_element,"boy");
        root->append_node(sibling );
                 std::string xmlstring;
        print(back_inserter(xmlstring), doc);
        cout << xmlstring << endl;}

1 个答案:

答案 0 :(得分:0)

除了必要的#includes,并且缺少using namespace rapidxml;您的代码编译并运行正常。

xmlstring包含:

<?xml version="1.0" encoding="utf-8"?>
<root ="">
    <old/>
    <boy/>
</root>

由于oldboy没有内容,因此他们使用xml空元素标记<tagname/>而不是像<tagname></tagname>

这样的开始和结束对