首页 > 代码库 > json对象的序列化和反序列化

json对象的序列化和反序列化

 //Json.NET序列化
   
        string jsonData =http://www.mamicode.com/ JsonConvert.SerializeObject(对象model);


      //Json.NET反序列化
      string json = @"{ ‘Name‘:‘C#‘,‘Age‘:‘3000‘,‘ID‘:‘1‘,‘Sex‘:‘男‘}";
          Student descJsonStu = JsonConvert.DeserializeObject<对象>(json);//反序列化

感谢:http://www.cnblogs.com/felix-wang/p/6406953.html

json对象的序列化和反序列化