溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C#如何對(duì)Json進(jìn)行序列化和反序列化

發(fā)布時(shí)間:2022-04-24 10:45:43 來源:億速云 閱讀:517 作者:iii 欄目:開發(fā)技術(shù)

這篇“C#如何對(duì)Json進(jìn)行序列化和反序列化”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“C#如何對(duì)Json進(jìn)行序列化和反序列化”文章吧。

一、Json簡介

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;
        }
    }

JSONStrToList 

自定義模型

        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");
            }
        }

StrTosJSON

        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è)資訊頻道。

向AI問一下細(xì)節(jié)

免責(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)容。

AI