cocos2dx 文件操作

前端之家收集整理的这篇文章主要介绍了cocos2dx 文件操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

读写默认配置文件

UserDefault::getInstance()->setStringForKey("data","Hello lidaha!");

    CCLOG("%s",UserDefault::getInstance()->getStringForKey("data.ini","Hello World"));

读写文件

auto fu = FileUtils::getInstance();

    CCLOG("%s",fu->getWritablePath());  //获取允许操作的目录

    //打开文件
    FILE *fp = fopen(fu->fullPathFromRelativeFile("data.txt",fu->getWritablePath()).c_str(),"w");

    fprintf(fp,"Hello Lidaha!\n");

    fclose(fp);
    //读取文件数据
    auto dt = fu->getDataFromFile(fu->fullPathFromRelativeFile("data.txt",fu->getWritablePath()));

    CCLOG("%s",dt.getBytes());
原文链接:https://www.f2er.com/cocos2dx/340081.html

猜你在找的Cocos2d-x相关文章