Json串序列化和反序列化

阅读更多
初始化一个数据字典,将它转化为json串,并将转化后的json串再转化为字典对象
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using WebService.ServiceReference;

using System.Text;
using System.Web.Script.Serialization;
using System.Data;


/// 
/// 初始化字典里面的内容
/// 
/// 
private SortedDictionary GetBaseParamDict()
{
SortedDictionary sdBase = new SortedDictionary();
            sdBase.Add("陕西", "西安");
            sdBase.Add("北京", "北京");
            sdBase.Add("广东", "广州");
            sdBase.Add("山西", "太原");
            sdBase.Add("四川", "成都");
            return sdBase;
}

/// 
        /// 将对象序列化为json串
        /// 
        /// object可以是数据字典
        /// json串
        private string DiceToJson2(object obj)
        {
            JavaScriptSerializer jss = new JavaScriptSerializer();
            return jss.Serialize(obj);
        }
        
        /// 
        /// 将Json串反序列化为字典
        /// 
        /// json串
        /// 泛型的数据字典
        private SortedDictionary JsonToDice(string str)
        {
            JavaScriptSerializer jss = new JavaScriptSerializer();
            SortedDictionary dice = new SortedDictionary();

            dice = jss.Deserialize>(str);

            foreach (var item in dice)
            {
                Response.Write(item.Key + item.Value);
            }

            return dice;
        }


未完待续...

你可能感兴趣的:(c#,Json,转化)