码迷,mamicode.com
首页 > 移动开发 > 详细

Unity Android路径及注意事项

时间:2017-04-16 17:40:36      阅读:338      评论:0      收藏:0      [点我收藏+]

标签:files   ons   isnull   gas   file   ==   android   ted   jar   

Application.temporaryCachePath==/storage/emulated/0/Android/data/com.***.***/cache

Application.persistentDataPath==/storage/emulated/0/Android/data/com.***.***/files

 

或许你碰到过,在电脑读取该目录下的文件一点问题也没有,突然发不到Android怎么也读取不到。是吧即便路径改成Android上的路径也读取不到 "jar:file://" + Application.dataPath + "!/assets";

嗯嗯嗯,Android上就是这么特殊,其实不是文件路径不对,而是在Android上读取文件的方式不对哎
他需要以WWW的方式去读。好坑啊

path=Application.streamingAssetsPath+“文件名。后缀”

string str;
IEnumerator ReadFile(string path)
    {
        WWW www = new WWW(path);
        yield return www;

        if (string.IsNullOrEmpty(www.error))
        {
            str= www.text;
        }
    }

Unity Android路径及注意事项

标签:files   ons   isnull   gas   file   ==   android   ted   jar   

原文地址:http://www.cnblogs.com/Jason-c/p/6719324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!