XML 文档用树数据结构表示。树的根是文档本身,它对应于C++类型 xml_document。文档有一个或多个子节点,对应于C++类型xml_node。节点有不同的类型;根据类型,节点可以具有子节点的集合、对应于C++类型xml_attribute的属性集合以及一些附加数据(即名称)。
tree.xml
<?xml version="1.0"?>
<mesh name="mesh_root">
<!-- here is a mesh node -->
some text
<![CDATA[someothertext]]>
some more text
<node attr1="value1" attr2="value2" />
<node attr1="value2">
<innernode/>
</node>
</mesh>
<?include somedata?>
main.cpp
#include "pugixml.hpp"
#include <iostream>
using namespace pugi;
using namespace std;
int main()
{
// tag::code[]
xml_document doc;
xml_parse_result result = doc.load_file("./tree.xml");
cout << "Load result: " << result.description() << ", mesh name: " << doc.child("mesh").attribute("name").value() << endl;
xml_node mesh = doc.child("mesh");
//访问mesh下所有子节点及其子节点的所有属性
for (xml_node_iterator it = mesh.begin(); it != mesh.end(); ++it)
{
cout << "mesh:";
for (xml_attribute_iterator ait = it->attributes_begin(); ait != it->attributes_end(); ++ait)
{
cout << " " << ait->name() << "=" << ait->value();
}
cout << endl;
}
}
Load result: No error, mesh name: mesh_root
mesh: attr1=value1 attr2=value2
mesh: attr1=value2