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文檔。