Json   发布时间:2022-04-22  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Newtonsoft.Json序列化和反序列大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
这里下载:http://www.newtonsoft.com/products/json/
安装:
1 .解压下载文件,得到Newtonsoft.Json.dll
2.在项目中添加引用..
序列化和反序列在.net项目中:

Product product = new Product();
 
product.Name = "Apple";
product.Expiry = new datetiR_383_11845@e(2008,12,28);
product.Price = 3.99M;
product.Sizes = new String[] { "small","Medium","Large" };
 
String output = javascriptConvert.serializeObject(product);
@H_673_57@//{
@H_673_57@//  "Name": "Apple",
@H_673_57@//  "Expiry": new Date(1230422400000),
@H_673_57@//  "Price": 3.99,
@H_673_57@//  "Sizes": [
@H_673_57@//    "small",
@H_673_57@//    "Medium",
@H_673_57@//    "Large"
@H_673_57@//  ]
@H_673_57@//}
 
Product deserializedProduct = (Product)javascriptConvert.DeserializeObject(output,typeof(Product));

读取JSON

String jsontext = "['JSON!',1,true,{property:'value'}]";
 
JsonReader reader = new JsonReader(new StringReader(jsontext));
 
Console.WriteLine("TokenType\t\tValueType\t\tValue");
 
while (reader.Read())
{
    Console.WriteLine(reader.TokenType + "\t\t" + WriteValue(reader.ValueTypE) + "\t\t" + WriteValue(reader.value))
}


结果显示:
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写入

StringWriter sw = new StringWriter();
JsonWriter writer = new JsonWriter(sw);
 
writer.WriteStartArray();
writer.WriteValue("JSON!");
writer.WriteValue(1);
writer.WriteValue(true);
writer.WriteStartObject();
writer.WritePropertyName("property");
writer.WriteValue("value");
writer.WriteEndObject();
writer.WriteEndarray();
 
writer.Flush();
 
String jsontext = sw.GetStringBuilder().ToString();
 
Console.WriteLine(jsontext);
@H_673_57@// ['JSON!',{property:'value'}]


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

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

大佬总结

以上是大佬教程为你收集整理的Newtonsoft.Json序列化和反序列全部内容,希望文章能够帮你解决Newtonsoft.Json序列化和反序列所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。