標籤:sof stat 簡單 執行個體 [] dem 資料交換 time 時間
JSON是專門為瀏覽器中的網頁上啟動並執行JavaScript代碼而設計的一種資料格式。在網站應用程式中使用JSON的情境越來越多,本文介紹ASP.NET中JSON的序列化和還原序列化,主要對JSON的簡單介紹,ASP.NET如何序列化和還原序列化的處理,在序列化和還原序列化對日期時間、集合、字典的處理。
一、JSON簡介:
JSON(JavaScript Object Notation,JavaScript對象標記法)是一種輕量級的資料交換格式。
JSON是“名值對”的集合。結構由大括弧‘‘{}‘‘,中括弧‘‘[]‘‘,逗號‘‘,‘‘,冒號‘‘:‘‘,雙引號‘‘“”‘‘組成,包含的資料類型有Object,Number,Boolean,String,Array, NULL等。
JSON具有以下的形式:
對象(Object)是一個無序的“名值對”集合,一個對象以”{”開始,”}”結束。每個“名”後跟著一個”:”,多個“名值對”由逗號分隔。如:
var user={"name":"張三","gender":"男","birthday":"1980-8-8"}
數組(Array)是值的有序集合,一個數組以“[”開始,以“]”結束,值之間使用“,”分隔。如:
var userlist=[{"user":{"name":"張三","gender":"男","birthday":"1980-8-8"}},{"user":{"name":"李四","gender":"男","birthday":"1985-5-8"}}];
字串(String)是由雙引號包圍的任意數量的Unicode字元的集合,使用反斜線轉義。
二、對JSON資料進行序列化和還原序列化
可以使用DataContractJsonSerializer類將類型執行個體序列化為JSON字串,並將JSON字串還原序列化為類型執行個體。DataContractJsonSerializer在System.Runtime.Serialization.Json命名空間下,.NET Framework 3.5包含在System.ServiceModel.Web.dll中,需要添加對其的引用;.NET Framework 4在System.Runtime.Serialization中。
利用DataContractJsonSerializer序列化和還原序列化的代碼:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Runtime.Serialization.Json;
using System.IO;
using System.Text;
///<summary>
/// JSON序列化和還原序列化輔助類
///</summary>
publicclass JsonHelper
{
///<summary>
/// JSON序列化
///</summary>
publicstaticstring JsonSerializer<T>(T t)
{
DataContractJsonSerializer ser =new DataContractJsonSerializer(typeof(T));
MemoryStream ms =new MemoryStream();
ser.WriteObject(ms, t);
string jsonString = Encoding.UTF8.GetString(ms.ToArray());
ms.Close();
return jsonString;
}
///<summary>
/// JSON還原序列化
///</summary>
publicstatic T JsonDeserialize<T>(string jsonString)
{
DataContractJsonSerializer ser =new DataContractJsonSerializer(typeof(T));
MemoryStream ms =new MemoryStream(Encoding.UTF8.GetBytes(jsonString));
T obj = (T)ser.ReadObject(ms);
return obj;
}
}
序列化Demo:
Person p =new Person();
p.Name ="張三";
p.Age =28;
p.LastLoginTime = DateTime.Now;
string jsonString = JsonHelper.JsonSerializer<Person>(p);
運行行結果:
{"Age":28,"LastLoginTime":"2011-01-09 01:00:56","Name":"張三"}
還原序列化Demo:
string json ="{\"Age\":28,\"LastLoginTime\":\"2011-01-0900:30:00\",\"Name\":\"張三\"}";
p=JsonHelper.JsonDeserialize<Person>(json);
運行結果:
在後台替換字串適用範圍比較窄,如果考慮到全球化的有多種語言還會更麻煩。
2、利用JavaScript處理
function ChangeDateFormat(jsondate) {
jsondate = jsondate.replace("/Date(", "").replace(")/", "");
if (jsondate.indexOf("+") >0) {
jsondate = jsondate.substring(0, jsondate.indexOf("+"));
}
elseif (jsondate.indexOf("-") >0) {
jsondate = jsondate.substring(0, jsondate.indexOf("-"));
}
var date =new Date(parseInt(jsondate, 10));
var month = date.getMonth() +1<10?"0"+ (date.getMonth() +1) : date.getMonth() +1;
var currentDate = date.getDate() <10?"0"+ date.getDate() : date.getDate();
return date.getFullYear() +"-"+ month +"-"+ currentDate;
}
簡單Demo :
ChangeDateFormat("\/Date(1294499956278+0800)\/");
結果:2011-1-8
四、JSON序列化和還原序列化集合、字典、數組的處理
在JSON資料中,所有的集合、字典和數組都表示為數組。
List<T>序列化:
List<Person> list =new List<Person>()
{
new Person(){ Name="張三", Age=28},
new Person(){ Name="李四", Age=25}
};
string jsonString = JsonHelper.JsonSerializer<List<Person>>(list);
序列化結果:
"[{\"Age\":28,\"Name\":\"張三\"},{\"Age\":25,\"Name\":\"李四\"}]"
字典不能直接用於JSON,Dictionary字典轉化為JSON並不是跟原來的字典格式一致,而是形式以Dictionary的Key作為名稱”Key“的值,以Dictionary的Value作為名稱為”Value“的值 。如:
Dictionary<string, string> dic =new Dictionary<string, string>();
dic.Add("Name", "張三");
dic.Add("Age", "28");
string jsonString = JsonHelper.JsonSerializer < Dictionary<string, string>>(dic);
序列化結果:
"[{\"Key\":\"Name\",\"Value\":\"張三\"},{\"Key\":\"Age\",\"Value\":\"28\"}]"
JSON官網:http://www.json.org/json-zh.html
獨立JSON序列化:http://msdn.microsoft.com/zh-cn/library/bb412170.aspx
如何對JSON序列化和還原序列化:http://msdn.microsoft.com/zh-cn/library/bb412179.aspx
ASP.NET 中JSON 的序列化和還原序列化