读取json文件并将其存储在字符串UWP C#

时间:2016-05-28 04:43:16

标签: c# json

每当我运行我的应用程序时,我都会遇到以下异常

  

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?

1 个答案:

答案 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);
     }
 }
}

你可以看一下解析json herehere 2