c# JsonReader读取json字符串

Posted LBO.net

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# JsonReader读取json字符串相关的知识,希望对你有一定的参考价值。

使用JsonReader读Json字符串:
  
 
string jsonText = @"{""input"" : ""value"", ""output"" : ""result""}";
JsonReader reader = new JsonTextReader(new StringReader(jsonText));
 
while (reader.Read())
{
    Console.WriteLine(reader.TokenType + "\t\t" + reader.ValueType + "\t\t" + reader.Value);
}
 

以上是关于c# JsonReader读取json字符串的主要内容,如果未能解决你的问题,请参考以下文章

带有 Json 的 Windows Phone - 从 JsonReader 读取 JObject 时出错

使用 JsonReader 将缓存的 Json 文件读取为 ByteArray

如何在不知道 json 键的情况下使用 JsonReader 从 json 读取值

Gson使用google的JsonReader读取Json文件并转化成对象

使用 JsonReader

JsonReader 无法正确解析字符串数组