黄沙百战穿金甲,不破楼兰终不还。这篇文章主要讲述cocos2dx的android版FileUtils的坑相关的知识,希望能为你提供帮助。
cocos2dx3.13,FileUtils-android.cpp中可以看到:
FileUtils::Status FileUtilsAndroid::getContents(const std::string& filename, ResizableBuffer* buffer) { static const std::string apkprefix("assets/"); if (filename.empty()) return FileUtils::Status::NotExists; string fullPath = fullPathForFilename(filename); if (fullPath[0] == ‘/‘) return FileUtils::getContents(fullPath, buffer); string relativePath = string(); size_t position = fullPath.find(apkprefix); if (0 == position) { // "assets/" is at the beginning of the path and we don‘t want it relativePath += fullPath.substr(apkprefix.size()); } else { relativePath = fullPath; } ... }
如果路径以assets/开头,则assets会被去掉。这就意味着你的Resources下不能有assets文件夹,否则下面所有的文件都会由于这个规则而无法取到。
【cocos2dx的android版FileUtils的坑】记录一下
推荐阅读
- 微信小程序wx.uploadFile在安卓手机上面the same task is working问题解决
- Android性能优化之内存泄漏
- 安卓app开发笔记
- Android 样式 (style) 和主题(theme)
- Android中使用OKHttp上传图片,从相机和相册中获取图片并剪切
- 用安卓实现斐波那契数和最近点对问题
- Android Studio插件之快速findViewById(butterknife和Android CodeGenerator的使用)
- Android疑难杂症之android:configChanges="orientation" 无效
- Android NFC标签 开发深度解析 触碰的艺术