std::string filePath = FileUtils::getInstance()->fullPathForFilename(fileName);
XMLDocument *pDoc = new XMLDocument();
XMLError errorId = pDoc->LoadFile(filePath.c_str());
log("errorId %d",errorId);
fileName在Android下assets目录,以上代码errorId总为3 (找不到)
原因是FileUtils返回全路径并没做好android的适配。
可以这么绕开:
std::string content = FileUtils::getInstance()->getStringFromFile(fileName);
XMLError errorId = pDoc->Parse(content.c_str());
这么返回就为0了(成功了)
原文链接:https://www.f2er.com/cocos2dx/340818.html