ASP.NET中JSON如何對時間進行序列化和還原序列化

來源:互聯網
上載者:User

JSON序列化和還原序列化日期時間的處理

JSON格式不直接支援日期和時間。DateTime值值顯示為“/Date(700000+0500)/”形式的JSON字串,其中第一個數字(在提 供的樣本中為 700000)是 GMT 時區中自 1970 年 1 月 1 日午夜以來按正常時間(非夏令時)經過的毫秒數。該數字可以是負數,以表示之前的時間。樣本中包括“+0500”的部分可選,它指示該時間屬於Local 類型,即它在還原序列化時應轉換為本地時區。如果沒有該部分,則會將時間還原序列化為Utc。

1.添加一個實體類,用於示範時間序列化前後的不同

    public class Person
    {
        public string Name { set; get; }
        public int Age { set; get; }
        public DateTime Birthday { set; get; }
    }

2.主程式調用:

public  class Program
    {

        static void Main(string[] args)
        {
            Person p=new Person();
            p.Name = "AKwwl";
            p.Age = 25;
            p.Birthday = DateTime.Now;
            string json= JsonHelper.ObjectToJson(p);  //處理序列化的方法
            Console.WriteLine(json);
            Console.ReadKey();

    }

 } 

如果不對時間進行序列化出來,其結果序列化後的結果為:

{"Age":25,"Birthday":"\/Date(1348540465218+0800)\/","Name":"AKwwl"}

3.下面我們就在原有的序列化處理類中添加對時間進行序列化

public class JsonHelper
    {

        public static string ObjectToJson<T>(T t)
        {
            using (MemoryStream ms=new MemoryStream())
            {
                DataContractJsonSerializer serializer=new DataContractJsonSerializer(typeof(T));
                serializer.WriteObject(ms,t);
                ms.Position = 0;
                using (StreamReader reader=new StreamReader(ms))
                {
                    string json = reader.ReadToEnd();
                    string p = @"\\/Date\((\d+)\+\d+\)\\/";
                    MatchEvaluator evaluator = new MatchEvaluator(ConvertJsonDateToDateString);   

       //對時間進行處理,需要引用System.Text.RegularExpressions;命名空間
                    Regex reg=new Regex(p);
                    json = reg.Replace(json, evaluator);
                    return json;
                }

            }
        }

        public static T JsonToObject<T>(string json)
        {
            string p= @"\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2}";
            MatchEvaluator evaluator=new MatchEvaluator(ConvertDateStringToJsonDate);    //對時間進行處理
            Regex reg=new Regex(p);
            json = reg.Replace(json, evaluator);
            using (MemoryStream ms=new MemoryStream(Encoding.Unicode.GetBytes(json)))
            {
                DataContractJsonSerializer serializer=new DataContractJsonSerializer(typeof(T));
                T data = (T) serializer.ReadObject(ms);
                return data;
            }
        }

        /// <summary>
        /// 將Json時間轉換成時間字元
        /// </summary>

       private static string ConvertJsonDateToDateString(Match m)  //對時間進行序列化處理
       {
           string result = string.Empty;
           DateTime dt = new DateTime(1970,1,1);
           dt = dt.AddMilliseconds(long.Parse(m.Groups[1].Value));
           dt = dt.ToLocalTime();
           result = dt.ToString("yyyy-MM-dd HH:mm:ss");
           return result;
      }

      /// <summary>
      /// 將時間字元轉換成JSON時間
      /// </summary>

      private static string ConvertDateStringToJsonDate(Match m)     
       {
           string result = string.Empty;
           DateTime dt = DateTime.Parse(m.Groups[0].Value);
           dt = dt.ToUniversalTime();
           TimeSpan ts = dt - DateTime.Parse("1970-01-01");
           result = string.Format("\\/Date({0}+0800)\\/",ts.TotalMilliseconds);
           return result;
       }

    }

主程式調用:

public  class Program
    {

        static void Main(string[] args)
        {
            Person p=new Person();
            p.Name = "AKwwl";
            p.Age = 25;
            p.Birthday = DateTime.Now;
            string json= JsonHelper.ObjectToJson(p);  //處理序列化的方法
            Console.WriteLine(json);
            Console.ReadKey();

    }

 } 

輸出結果為:
{"Age":25,"Birthday":"2012-09-25 10:50:00","Name":"AKwwl"}

以上就實現了,JSON中對時間序列化和還原序列化的處理。

 

 

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.