cocos2d-x之xml文件读取初试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cocos2d-x之xml文件读取初试相关的知识,希望对你有一定的参考价值。
auto doc=new tinyxml2::XMLDocument();
doc->Parse(FileUtils::getInstance()->getStringFromFile("data_1.xml").c_str());
auto root=doc->RootElement();
for (auto e=root->FirstChildElement();e;e=e->NextSiblingElement()) {
std::string str;
for (auto attr=e->FirstAttribute();attr;attr=attr->Next()) {
str+=attr->Name();
str+=":";
str+=attr->Value();
str+=",";
}
log("%s",str.c_str());
}
以上是关于cocos2d-x之xml文件读取初试的主要内容,如果未能解决你的问题,请参考以下文章