栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

C#实现简单的JSON序列化功能代码实例

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C#实现简单的JSON序列化功能代码实例

 好久没有做web了,JSON目前比较流行,闲得没事,所以动手试试将对象序列化为JSON字符(尽管DotNet framework已经有现成的库,也有比较好的第三方开源库),而且只是实现了处理简单的类型,并且DateTime处理的也不专业,有兴趣的筒子可以扩展,代码比较简单,反序列化木有实现:( ,直接贴代码吧,都有注释了,所以废话不多说  :)

复制代码 代码如下:
测试类///


    /// Nested class of Person.
    ///

    public class House
    {
        public string Name
        {
            get;
            set;
        }
        public double Price
        {
            get;
            set;
        }
    }

    ///


    /// Person dummy class
    ///

    public class Person
    {
        public string Name
        {
            get;
            set;
        }
        public int Age
        {
            get;
            set;
        }
        public string Address
        {
            get;
            set;
        }
        private int h = 12;

        public bool IsMarried
        {
            get;
            set;
        }

        public string[] Names
        {
            get;
            set;
        }

        public int[] Ages
        {
            get;
            set;
        }
        public House MyHouse
        {
            get;
            set;
        }
        public DateTime BirthDay
        {
            get;
            set;
        }
        public List Friends
        {
            get;
            set;
        }
        public List LoveNumbers
        {
            get;
            set;
        }
    }

复制代码 代码如下:
接口定义  ///


    /// IJsonSerializer interface.
    ///

    interface IJsonSerializer
    {
        ///
        /// Serialize object to json string.
        ///

        /// The type to be serialized.
        /// Instance of the type T.
        /// json string.
        string Serialize(object obj);

        ///


        /// Deserialize json string to object.
        ///

        /// The type to be deserialized.
        /// json string.
        /// instance of type T.
        T Deserialize(string jsonString);
    }

接口实现,还有待完善..

复制代码 代码如下:
///


    /// Implement IJsonSerializer, but Deserialize had not been implemented.
    ///

    public class JsonSerializer : IJsonSerializer
    {
        ///
        /// Serialize object to json string.
        ///

        /// The type to be serialized.
        /// Instance of the type T.
        /// json string.
        public string Serialize(object obj)
        {
            if (obj == null)
            {
                return "{}";
            }

            // Get the type of obj.
            Type t = obj.GetType();

            // Just deal with the public instance properties. others ignored.
            BindingFlags bf = BindingFlags.Instance | BindingFlags.Public;

            PropertyInfo[] pis = t.GetProperties(bf);

            StringBuilder json = new StringBuilder("{");

            if (pis != null && pis.Length > 0)
            {
                int i = 0;
                int lastIndex = pis.Length - 1;

                foreach (PropertyInfo p in pis)
                {
                    // Simple string
                    if (p.PropertyType.Equals(typeof(string)))
                    {
                        json.AppendFormat(""{0}":"{1}"", p.Name, p.GetValue(obj, null));
                    }
                    // Number,boolean.
                    else if (p.PropertyType.Equals(typeof(int)) ||
                        p.PropertyType.Equals(typeof(bool)) ||
                        p.PropertyType.Equals(typeof(double)) ||
                        p.PropertyType.Equals(typeof(decimal))
                        )
                    {
                        json.AppendFormat(""{0}":{1}", p.Name, p.GetValue(obj, null).ToString().ToLower());
                    }
                    // Array.
                    else if (isArrayType(p.PropertyType))
                    {
                        // Array case.
                        object o = p.GetValue(obj, null);

                        if (o == null)
                        {
                            json.AppendFormat(""{0}":{1}", p.Name, "null");
                        }
                        else
                        {
                            json.AppendFormat(""{0}":{1}", p.Name, getArrayValue((Array)p.GetValue(obj, null)));
                        }
                    }
                    // Class type. custom class, list collections and so forth.
                    else if (isCustomClassType(p.PropertyType))
                    {
                        object v = p.GetValue(obj, null);
                        if (v is IList)
                        {
                            IList il = v as IList;
                            string subJsString = getIListValue(il);

                            json.AppendFormat(""{0}":{1}", p.Name, subJsString);
                        }
                        else
                        {
                            // Normal class type.
                            string subJsString = Serialize(p.GetValue(obj, null));

                            json.AppendFormat(""{0}":{1}", p.Name, subJsString);
                        }
                    }
                    // Datetime
                    else if (p.PropertyType.Equals(typeof(DateTime)))
                    {
                        DateTime dt = (DateTime)p.GetValue(obj, null);

                        if (dt == default(DateTime))
                        {
                            json.AppendFormat(""{0}":""", p.Name);
                        }
                        else
                        {
                            json.AppendFormat(""{0}":"{1}"", p.Name, ((DateTime)p.GetValue(obj, null)).ToString("yyyy-MM-dd HH:mm:ss"));
                        }
                    }
                    else
                    {
                        // TODO: extend.
                    }

                    if (i >= 0 && i != lastIndex)
                    {
                        json.Append(",");
                    }

                    ++i;
                }
            }

            json.Append("}");

            return json.ToString();
        }

        ///


        /// Deserialize json string to object.
        ///

        /// The type to be deserialized.
        /// json string.
        /// instance of type T.
        public T Deserialize(string jsonString)
        {
            throw new NotImplementedException("Not implemented :(");
        }

        ///


        /// Get array json format string value.
        ///

        /// array object
        /// js format array string.
        string getArrayValue(Array obj)
        {
            if (obj != null)
            {
                if (obj.Length == 0)
                {
                    return "[]";
                }

                object firstElement = obj.GetValue(0);
                Type et = firstElement.GetType();
                bool quotable = et == typeof(string);

                StringBuilder sb = new StringBuilder("[");
                int index = 0;
                int lastIndex = obj.Length - 1;

                if (quotable)
                {
                    foreach (var item in obj)
                    {
                        sb.AppendFormat(""{0}"", item.ToString());

                        if (index >= 0 && index != lastIndex)
                        {
                            sb.Append(",");
                        }

                        ++index;
                    }
                }
                else
                {
                    foreach (var item in obj)
                    {
                        sb.Append(item.ToString());

                        if (index >= 0 && index != lastIndex)
                        {
                            sb.Append(",");
                        }

                        ++index;
                    }
                }

                sb.Append("]");

                return sb.ToString();
            }

            return "null";
        }

        ///


        /// Get Ilist json format string value.
        ///

        /// IList object
        /// js format IList string.
        string getIListValue(IList obj)
        {
            if (obj != null)
            {
                if (obj.Count == 0)
                {
                    return "[]";
                }

                object firstElement = obj[0];
                Type et = firstElement.GetType();
                bool quotable = et == typeof(string);

                StringBuilder sb = new StringBuilder("[");
                int index = 0;
                int lastIndex = obj.Count - 1;

                if (quotable)
                {
                    foreach (var item in obj)
                    {
                        sb.AppendFormat(""{0}"", item.ToString());

                        if (index >= 0 && index != lastIndex)
                        {
                            sb.Append(",");
                        }

                        ++index;
                    }
                }
                else
                {
                    foreach (var item in obj)
                    {
                        sb.Append(item.ToString());

                        if (index >= 0 && index != lastIndex)
                        {
                            sb.Append(",");
                        }

                        ++index;
                    }
                }

                sb.Append("]");

                return sb.ToString();
            }

            return "null";
        }

        ///


        /// Check whether t is array type.
        ///

        ///
        ///
        bool isArrayType(Type t)
        {
            if (t != null)
            {
                return t.IsArray;
            }

            return false;
        }

        ///


        /// Check whether t is custom class type.
        ///

        ///
        ///
        bool isCustomClassType(Type t)
        {
            if (t != null)
            {
                return t.IsClass && t != typeof(string);
            }

            return false;
        }
    }

测试代码:

复制代码 代码如下:
class Program
    {
        static void Main(string[] args)
        {
            Person ps = new Person()
            {
                Name = "Leon",
                Age = 25,
                Address = "China",
                IsMarried = false,
                Names = new string[] { "wgc", "leon", "giantfish" },
                Ages = new int[] { 1, 2, 3, 4 },
                MyHouse = new House()
                {
                    Name = "HouseName",
                    Price = 100.01,
                },
                BirthDay = new DateTime(1986, 12, 20, 12, 12, 10),
                Friends = new List() { "friend1", "friend2" },
                LoveNumbers = new List() { 1, 2, 3 }
            };

            IJsonSerializer js = new JsonSerializer();
            string s = js.Serialize(ps);
            Console.WriteLine(s);
            Console.ReadKey();
        }
    }

 生成的 JSON字符串 :

 复制代码 代码如下:
 {"Name":"Leon","Age":25,"Address":"China","IsMarried":false,"Names":["wgc","leon","giantfish"],"Ages":[1,2,3,4],"MyHouse":{"Name":"HouseName","Price":100.01},"BirthDay":"1986-12-20 12:12:10","Friends":["friend1","friend2"],"LoveNumbers":[1,2,3]}
 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/126960.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号