您好,登錄后才能下訂單哦!
這篇“C#如何對(duì)Json進(jìn)行序列化和反序列化”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“C#如何對(duì)Json進(jìn)行序列化和反序列化”文章吧。
Json(JavaScript Object Notation) 是一種輕量級(jí)的數(shù)據(jù)交換格式。它基于JS的一個(gè)子集。 Json采用完全獨(dú)立于語言的文本格式。這使得Json成為理想的數(shù)據(jù)交換語言。易于人閱讀和編寫,同時(shí)也易于機(jī)器解析和生成。
Json簡單來說就是JS中的對(duì)象和數(shù)組,所以Json也存在兩種結(jié)構(gòu):對(duì)象、數(shù)組。
Json對(duì)象:Json對(duì)象定義在花括號(hào)“{}”內(nèi),以Key:value鍵值對(duì)的形式存放數(shù)據(jù),多個(gè)數(shù)據(jù)使用分號(hào)“;”分割。
Object obj = Serialization.JsonToObject<Object>(strJson);
strJson = Serialization.ObjectToJSON(obj);
public static class Serialization { public static T JsonToObject<T>(string jsonText) { DataContractJsonSerializer dataContractJsonSerializer = new DataContractJsonSerializer(typeof(T)); MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(jsonText)); T result = (T)((object)dataContractJsonSerializer.ReadObject(memoryStream)); memoryStream.Dispose(); return result; } public static string ObjectToJSON<T>(T obj) { DataContractJsonSerializer dataContractJsonSerializer = new DataContractJsonSerializer(typeof(T)); string result = string.Empty; using (MemoryStream memoryStream = new MemoryStream()) { dataContractJsonSerializer.WriteObject(memoryStream, obj); memoryStream.Position = 0L; using (StreamReader streamReader = new StreamReader(memoryStream)) { result = streamReader.ReadToEnd(); } } return result; } }
自定義模型
public class Obj { public string Name { get; set; } public double Price { get; set; } }
JSONStrToList
//json轉(zhuǎn)對(duì)象、數(shù)組, 反序列化 public static void JSONStringToList() { //json格式字符串 string JsonStr = "{Name:'蘋果',Price:5.5}"; JavaScriptSerializer Serializer = new JavaScriptSerializer(); //json字符串轉(zhuǎn)為對(duì)象, 反序列化 Obj obj = Serializer.Deserialize<Obj>(JsonStr); Console.Write(obj.Name + ":" + obj.Price + "\r\n"); //json格式字符串 string JsonStrs = "[{Name:'蘋果',Price:5.5},{Name:'橘子',Price:2.5},{Name:'柿子',Price:16}]"; JavaScriptSerializer Serializers = new JavaScriptSerializer(); //json字符串轉(zhuǎn)為數(shù)組對(duì)象, 反序列化 List<Obj> objs = Serializers.Deserialize<List<Obj>>(JsonStrs); foreach (var item in objs) { Console.Write(item.Name + ":" + item.Price + "\r\n"); } }
public static JObject strToJson(string jsonText) { jsonText = "{\"shenzheng\":\"深圳\",\"beijing\":\"北京\",\"shanghai\":[{\"zj1\":\"zj11\",\"zj2\":\"zj22\"},\"zjs\"]}"; JObject jo = (JObject)JsonConvert.DeserializeObject(jsonText); //或者 //JObject jo = JObject.Parse(jsonText); string zone = jo["shenzheng"].ToString();//輸出 "深圳" string zone_en = jo["shanghai"].ToString();//輸出 "[{"zj1":"zj11","zj2":"zj22"},"zjs"]" string zj1 = jo["shanghai"][1].ToString();//輸出 "zjs" Console.WriteLine(jo); return jo; }
以上就是關(guān)于“C#如何對(duì)Json進(jìn)行序列化和反序列化”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。