好奇怪,在我这个win10 的cmd里面竟然是乱码?,还得调调,
但是流程就这样,找到第一个,cycle它的siblings
int main(int argc, char *argv[])
{
XMLDocument doc;
doc.LoadFile("test.xml");
XMLElement *root = doc.FirstChildElement("entries");
for (XMLElement* node = root->FirstChildElement("location"); node; node = node->NextSiblingElement("location")) {
cout << node->FirstChild()->ToText()->Value() << "\n";
}
return 0;
}
【 在 javame 的大作中提到: 】
: #include <iostream>
: #include "tinyxml2.h"
: using namespace std;
: ...................
--
FROM 152.78.0.*