博观而约取,厚积而薄发。这篇文章主要讲述安卓 通过www读取Application.persistentDataPath相关的知识,希望能为你提供帮助。
今天在读取Application.persistentDataPath路径下的图片时,在前面加上“
file:///”
例如
#if UNITY_EDITOR || UNITY_STANDALONE return "file:///" + Application.persistentDataPath + "1.jpg"; #elif UNITY_android return "file:///" +Application.persistentDataPath + "1.jpg"; #else return "file:///" +Application.persistentDataPath + "1.jpg"; #endif
搞了半天 www 加载 在前面加“ jar:file///” 没有用 不加也没有用,只有在前面加"file:///"才行;
另外 FileStream 读取文件时遇到一些问题
string ConfigurationFile= "";#if UNITY_EDITOR ConfigurationFile = Application.streamingAssetsPath + "/ConfigurationFile.txt"; #elif UNITY_ANDROID ConfigurationFile =Application.streamingAssetsPath + "/ConfigurationFile.txt"; #elif UNITY_STANDALONE ConfigurationFile = Application.streamingAssetsPath + "/ConfigurationFile.txt"; #endif FileStream file = new FileStream(ConfigurationFile, FileMode.Open);
【安卓 通过www读取Application.persistentDataPath】有没有发现 fileStream 地址不能加 file:///
推荐阅读
- Server.MapPath是使用
- Android 如何将手机屏幕投屏到PC端
- 项目初始化以后出现(Unable to load script from assets 'index.android.bundle)
- Spring08-----IoC容器ApplicationContext
- Unexpected directive 'XXX' imported by the module 'AppMoode'
- Android VideoView播放网络视频简介(转)
- mapper.xml文件中标签没有提示的解决
- 解决Android Studio无法下载sdk的问题
- Xamarin.Android 使用 SimpleAdapter 打造 ListView 万能适配器