Newtonsoft.Json 序列化和反序列化 时间格式

Posted 方寸之间

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Newtonsoft.Json 序列化和反序列化 时间格式相关的知识,希望对你有一定的参考价值。

1.JSON序列化

string JsonStr= JsonConvert.SerializeObject(Entity);

eg:

复制代码
 
A a=new A();

a.Name="Elain00";

a.Hobby="eat eat";

string jsonStr=JsonConvert.SerializeObject(a);
 
复制代码

 

2.JSON反序列化

string jsonstr = "jsonString";
Class model = JsonConvert.DeserializeObject<Class>(jsonstr);

eg:

string JsonStr=\'"{\\\'Name\\\':\\\'Elaine00\\\',\\\'Hobby\\\':\\\'eat eat\\\'}";
A a=JsonConvert.DeserializeObject<A>(JsonStr);

 3.时间格式处理

 IsoDateTimeConverter timeFormat = new IsoDateTimeConverter();
                    timeFormat.DateTimeFormat = "yyyy-MM-dd HH:mm:ss";
                    Response.Write(JsonConvert.SerializeObject(bll.GetModelList(strWhere), Newtonsoft.Json.Formatting.Indented, timeFormat));

 

 4.扩展方法

复制代码
public static class NewtonJSONHelper
    {
        public static string SerializeObject(this object obj)
        {
            return JsonConvert.SerializeObject(obj, Formatting.Indented, new JsonSerializerSettings{
                ReferenceLoopHandling = ReferenceLoopHandling.Ignore});
        }

        public static T DeserializeObject<T>(this string data)
        {
            return JsonConvert.DeserializeObject<T>(data, new JsonSerializerSettings
            {
                ReferenceLoopHandling = ReferenceLoopHandling.Ignore
            });
        }
    }
复制代码

以上是关于Newtonsoft.Json 序列化和反序列化 时间格式的主要内容,如果未能解决你的问题,请参考以下文章

Newtonsoft.Json.JsonConvert 从同一个类中序列化和反序列化

Newtonsoft.Json 序列化和反序列化 时间格式

Newtonsoft.Json 序列化和反序列化 以及时间格式

Newtonsoft.Json序列化和反序列之javascriptConvert.SerializeObject,DeserializeObject,JsonWriter,JsonReader(示例代

具有 IEnumerable<ISomeInterface> 类型属性的 NewtonSoft.Json 序列化和反序列化类

C#中使用Newtonsoft.Json序列化和反序列化自定义类对象