一切福田,不離方寸,從心而覓,感無不通。

Newtonsoft.Json序列化和反序列

下载:Newtonsoft.Json.dll

安装:
1.解压下载文件,得到Newtonsoft.Json.dll
2.在项目中添加引用..
序列化和反序列在.net项目中:




















读取JSON










结果显示:

TokenType ValueType Value
StartArray null null
String System.String JSON!
Integer System.Int32 1
Boolean System.Boolean True
StartObject null null
PropertyName System.String property
String System.String value
EndObject null null
EndArray null null

JSON写入



















这里会打印出: ['JSON!',1,true,{property:'value'}].

原文:http://www.cnblogs.com/sbxwylt/archive/2008/12/31/1366199.html