cocos2d-x之文件读写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cocos2d-x之文件读写相关的知识,希望对你有一定的参考价值。
bool HelloWorld::init()
{
if ( !Layer::init() )
{
return false;
}
auto fu=FileUtils::getInstance();
//FILE *f=fopen(fu->fullPathFromRelativeFile("data.txt",fu->getWritablePath()).c_str(),"w");
//fprintf(f,"Hello World");
//fclose(f);
//log("%s",fu->getWritablePath().c_str());
Data d=fu->getDataFromFile(fu->fullPathFromRelativeFile("data.txt",fu->getWritablePath()));
log("%s",d.getBytes());
return true;
}
以上是关于cocos2d-x之文件读写的主要内容,如果未能解决你的问题,请参考以下文章