码迷,mamicode.com
首页 > 编程语言 > 详细

Unity读取StreamingAssets路径下的文件

时间:2020-05-16 12:45:32      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:while   pre   lan   ==   deb   mep   str   summary   sum   

    /// <summary>
    ///读取StreamingAssets中的文件 
    /// </summary>
    /// <param name="path">StreamingAssets下的文件路径</param>
    /// <returns>读取到的字符串</returns>
    public static string GetTextForStreamingAssets(string path)
    {
        string localPath = "";
        if (Application.platform == RuntimePlatform.Android)
        {
            localPath = Application.streamingAssetsPath + "/" + path;
        }
        else
        {
            localPath = "file:///" + Application.streamingAssetsPath + "/" + path;
        }

        WWW www = new WWW(localPath);

        if (www.error != null)
        {
            Debug.LogError("error while reading files : " + localPath);
            return ""; //读取文件出错
        }
        while (!www.isDone) { }
        Debug.Log("File content :  " + www.text);//www下面还有获取字节数组的属性
        return www.text;
    }

Unity读取StreamingAssets路径下的文件

标签:while   pre   lan   ==   deb   mep   str   summary   sum   

原文地址:https://www.cnblogs.com/ezhar/p/12899746.html

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