Json字符串对于做web应用的应该很熟悉,其实在很多请求我们返回的都是Json字符串。那对于C#代码如何处理Json字符串呢,.Net封装了一个类叫做javaScriptSerializer[MSDN Library 链接http://msdn.microsoft.com/en-us/library/ee191864(v=vs.110).aspx];这个类提供了一个方法。
下面这个是我在快递100往抓取的一个圆通的快递信息。对于我们有用的信息是快递时间,快递状况。那我该如何来做。
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace TestJson{ public class PostalDeliveryModel { PRivate string message = string.Empty; private string nu = string.Empty; private List<SingalData> data = new List<SingalData>(); // Puclic的名字需要与Json字符串相同,但是忽略大小写 public string Message { get { return this.message; } set { this.message = value; } } public string Nu { get { return this.nu; } set { this.nu = value; } } public List<SingalData> Data { get { return this.data; } set { this.data = value; } } } public class SingalData { private DateTime time = System.DateTime.Now; private string context = string.Empty; private DateTime ftime = System.DateTime.Now; public DateTime Time { get { return this.time; } set { this.time = value; } } public DateTime FTime { get { return this.ftime; } set { this.ftime = value; } } public string Context { get { return this.context; } set { this.context = value; } } }}
2.对象什么好后只需要调用方法即可:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO;using System.Web.Script.Serialization; // 此命名空间对应的框架是 System.Web.Extensionsnamespace TestJson{ public class Program { public static void Main(string[] args) { string jsonStr = new StreamReader("JsonData.txt").ReadToEnd(); PostalDeliveryModel mode = new JavascriptSerializer().Deserialize<PostalDeliveryModel>(jsonStr); Console.ReadKey(); } }}
3.运行监控model对象.数据已经在对象里面了。
4.方法回顾,虽然获取到了。不过这种方法类的Public属性名称必须与Json字符串对应,不知道可否通过在Public属性的上面加上[标签]来映射,这样可以自定义名称,不再需要与Json里面名称一样。求其他大牛在评论的时候指点一下。
新闻热点
疑难解答