RapidXML是一个用于解析和操作XML文档的C++库。它具有简单易用、高效和轻量级的特点。以下是RapidXML库的一些常见用法:
#include "rapidxml.hpp"
#include "rapidxml_utils.hpp"
using namespace rapidxml;
int main() {
// 加载XML文档
file<> xmlFile("example.xml");
xml_document<> doc;
doc.parse<0>(xmlFile.data());
// 解析根节点
xml_node<>* rootNode = doc.first_node();
// 遍历子节点
for (xml_node<>* node = rootNode->first_node(); node; node = node->next_sibling()) {
// 处理子节点
}
return 0;
}
// 查询节点
xml_node<>* node = rootNode->first_node("child");
if (node) {
// 处理找到的节点
}
// 查询带有指定属性的节点
xml_node<>* nodeWithAttr = rootNode->first_node("child");
while (nodeWithAttr) {
if (nodeWithAttr->first_attribute("attr")) {
// 处理找到的节点
}
nodeWithAttr = nodeWithAttr->next_sibling("child");
}
// 获取节点值
const char* nodeValue = node->value();
// 获取节点属性值
const char* attrValue = node->first_attribute("attr")->value();
// 修改节点值
node->value("new value");
// 修改节点属性值
node->first_attribute("attr")->value("new value");
// 创建新节点
xml_node<>* newNode = doc.allocate_node(node_element, "new_node", "value");
// 将新节点插入到指定位置
rootNode->insert_node(rootNode->last_node(), newNode);
// 删除节点
rootNode->remove_node(node);
以上是RapidXML库的一些常见用法,通过这些功能可以轻松地解析和操作XML文档。