我是使用XML和C ++的新手,我想循环遍历XML节点并将'id'属性打印到矢量中。这是我的XML
<?xml version="1.0" encoding="UTF-8"?>
<player playerID="0">
<frames>
<frame id="0"></frame>
<frame id="1"></frame>
<frame id="2"></frame>
<frame id="3"></frame>
<frame id="4"></frame>
<frame id="5"></frame>
</frames>
</player>
这就是我加载XML的方式
rapidxml::xml_document<> xmlDoc;
/* "Read file into vector<char>"*/
std::vector<char> buffer((std::istreambuf_iterator<char>(xmlFile)), std::istreambuf_iterator<char>( ));
buffer.push_back('\0');
xmlDoc.parse<0>(&buffer[0]);
如何循环播放节点?
答案 0 :(得分:3)
将xml加载到文档对象后,可以使用first_node()
获取指定的子节点(或只是第一个);然后你可以用next_sibling()
来完成它的所有兄弟姐妹。使用first_attribute()
获取节点的指定(或仅第一个)属性。这是代码的外观:
#include <iostream>
#include <fstream>
#include <vector>
#include <sstream>
#include <rapidxml.hpp>
using std::cout;
using std::endl;
using std::ifstream;
using std::vector;
using std::stringstream;
using namespace rapidxml;
int main()
{
ifstream in("test.xml");
xml_document<> doc;
std::vector<char> buffer((std::istreambuf_iterator<char>(in)), std::istreambuf_iterator<char>( ));
buffer.push_back('\0');
doc.parse<0>(&buffer[0]);
vector<int> vecID;
// get document's first node - 'player' node
// get player's first child - 'frames' node
// get frames' first child - first 'frame' node
xml_node<>* nodeFrame = doc.first_node()->first_node()->first_node();
while(nodeFrame)
{
stringstream ss;
ss << nodeFrame->first_attribute("id")->value();
int nID;
ss >> nID;
vecID.push_back(nID);
nodeFrame = nodeFrame->next_sibling();
}
vector<int>::const_iterator it = vecID.begin();
for(; it != vecID.end(); it++)
{
cout << *it << endl;
}
return 0;
}