我想从资产中加载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;
}