Newtonsoft.Json
Posted 大力
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Newtonsoft.Json相关的知识,希望对你有一定的参考价值。
在线生成实体:http://tool.chinaz.com/tools/json2entity.aspx
RootObject ac = new RootObject(); ac = JsonConvert.DeserializeObject<RootObject>(sb.ToString()); sb2.Append(ac.status); sb2.Append("<br>"); sb2.Append(ac.lastResult.message); Context.Response.Write(sb2.ToString()); public class RootObject { public string status { get; set; } public string billstatus { get; set; } public string message { get; set; } public string autoCheck { get; set; } public string comOld { get; set; } public string comNew { get; set; } public LastResult lastResult { get; set; } } public class LastResult { public string message { get; set; } public string nu { get; set; } public string ischeck { get; set; } public string condition { get; set; } public string com { get; set; } public string status { get; set; } public string state { get; set; } public List<Data> data { get; set; } } public class Data { public string time { get; set; } public string ftime { get; set; } public string context { get; set; } }
以上是关于Newtonsoft.Json的主要内容,如果未能解决你的问题,请参考以下文章
从 JSON 检索项目时获取“无法将 Newtonsoft.Json.Linq.JObject 转换为 Newtonsoft.Json.Linq.JToken”
asp.net环境下对 Newtonsoft.json 引用的设置问题