.NET 自定义Json序列化时间格式_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > .NET 自定义Json序列化时间格式

.NET 自定义Json序列化时间格式

 2017/7/25 5:32:58  WeihanLi  程序员俱乐部  我要评论(0)
  • 摘要:.NET自定义Json序列化时间格式Intro和JAVA项目组对接,他们的接口返回的数据是一个json字符串,里面的时间有的是Unix时间戳,有的是string类型,有的还是空,默认序列化规则没办法反序列化为时间,所以自定义了一个Json时间转换器,支持可空时间类型、string、long(Unix时间戳毫秒)ShowmethecodepublicclassCustomDateTimeConverter:JavaScriptDateTimeConverter{///<summary>
  • 标签:.net net JSON 自定义 JS 时间格式 序列化

.NET 自定义Json序列化时间格式

Intro

和 JAVA 项目组对接,他们接口返回的数据是一个json字符串,里面的时间有的是Unix时间戳,有的是string类型,有的还是空,默认序列化规则没办法反序列化为时间, 所以自定义了一个 Json 时间转换器,支持可空时间类型、string、long(Unix时间戳毫秒)

Show me the code

public class CustomDateTimeConverter : JavaScriptDateTimeConverter
    {
        /// <summary>
        /// 重写JavaScriptDateTimeConverter ReadJson 方法
        /// </summary>
        /// <param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
        /// <param name="objectType">Type of the object.</param>
        /// <param name="existingValue">The existing property value of the JSON that is being converted.</param>
        /// <param name="serializer">The calling serializer.</param>
        /// <returns></returns>
        public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
        {
            if (reader.Value == null) //兼容可空时间类型
            {
                return null;
            }
            else
            {
                if (reader.TokenType == JsonToken.Date)
                {
                    return reader.Value;
                }
                else if (reader.TokenType == JsonToken.String)
                {
                    DateTime dt = DateTime.Parse(reader.Value.ToString());
                    return dt;
                }
                else
                {
                    return new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc).AddMilliseconds(Convert.ToInt64(reader.Value)).ToLocalTime();
                }
            }
        }
    }

 

How To Use

var model = JsonConvert.DeserializeObject<ResponseModel>(res,new CustomDateTimeConverter());

 

End

如果你有更好的实现方法,欢迎提出

欢迎随时联系我 weihanli@outlook.com

发表评论
用户名: 匿名