每当我运行我的应用程序时,我都会遇到以下异常
System.IO.FileSystem.dll中出现“System.InvalidOperationException”类型的异常,但未在用户代码中处理
不应在UI线程上执行同步操作。考虑在Task.Run中包装此方法。
string json = File.ReadAllText(@"C:\Users\PC\Documents\Visual Studio 2015\Projects\ApiInUniversal\ApiInUniversal\Assets\stream.json");
如何解析JSON?
答案 0 :(得分:0)
public async void ProcessRead()
{
string filePath = @"temp2.txt";
if (File.Exists(filePath) == false)
{
Debug.WriteLine("file not found: " + filePath);
}
else
{
try
{
string text = await ReadTextAsync(filePath);
Debug.WriteLine(text);
}
catch (Exception ex)
{
Debug.WriteLine(ex.Message);
}
}
}