从资产c#加载Json

时间:2016-06-22 09:36:48

标签: c# json

我想从资产中加载Json我尝试了下面的代码,但它不起作用你能看到错误。

 public String loadJSONFromAsset(string filepath )
    {
        string json = null;
        try
        {
           // TextAsset targetFile = Resources.Load<TextAsset>(filepath);

            using (StreamReader r = new StreamReader(filepath))
            {
                  json = r.ReadToEnd();
            }

            return json;

        }
        catch  (IOException e)
        {
            Debug.WriteLine("Exception Message: " + e.Message);
        }

        return json;
    }

0 个答案:

没有答案