using System.IO; using System.Runtime.Serialization.Json; using System.Text; using System.Windows.Forms; namespace CnsosNet { public class JsonEngine { //把对象生成json码 public static string Serialize(object objectToSerialize) { using (MemoryStream ms = new MemoryStream()) { DataContractJsonSerializer serializer = new DataContractJsonSerializer(objectToSerialize.GetType()); serializer.WriteObject(ms, objectToSerialize); ms.Position = 0; using (StreamReader reader = new StreamReader(ms)) { return reader.ReadToEnd(); } } } //把json码解析成对象 public static T Deserialize<T>(string jsonString) { if (jsonString == null || jsonString.Length <= 0) return default(T); T obj = default(T); try { using (MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(jsonString))) { DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(T)); obj = (T)serializer.ReadObject(ms); } } catch (System.Exception ex) { MessageBox.Show(ex.Message); } return obj; } } }
C# JSON码的生成与解析
原创
©著作权归作者所有:来自51CTO博客作者wzwyc的原创作品,请联系作者获取转载授权,否则将追究法律责任
下一篇:C#获取文件的MD5码
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
生成验证码(C#)
准备工作:1,随即码生成器。2,背景图像。(1)随即码生成器随机码的生成
c# random string microsoft float