码迷,mamicode.com
首页 > Windows程序 > 详细

c# 序列化对象为xml 方法

时间:2018-05-04 19:31:31      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:settings   声明   表示   div   indent   ace   creat   static   for   

 

        public static string XmlUtils(object obj, bool omitXmlDeclaration = true, bool indent = false,
            bool useNameSpace = false)
        {
            var sb = new StringBuilder();
            using (var xw = XmlWriter.Create(sb, new XmlWriterSettings()
            {
                OmitXmlDeclaration = omitXmlDeclaration, //是否省略xml声明
                ConformanceLevel = ConformanceLevel.Auto,
                Indent = indent //生成的xml是否缩进
            }))
            {
                if (useNameSpace)
                {
                    var xs = new XmlSerializer(obj.GetType());
                    xs.Serialize(xw, obj);
                }
                else
                {
                    XmlSerializerNamespaces namespaces = new XmlSerializerNamespaces();
                    namespaces.Add(string.Empty, string.Empty); //去除xml命名空间

                    var xs = new XmlSerializer(obj.GetType());
                    xs.Serialize(xw, obj, namespaces);
                }
            }

            //...:nil=\"true\"表示该值为空
            return sb.ToString();
        }

 

 也可以做成扩展方法

        public static string XmlUtils(this T obj, bool omitXmlDeclaration = true, bool indent = false,
            bool useNameSpace = false)
        {
            var sb = new StringBuilder();
            using (var xw = XmlWriter.Create(sb, new XmlWriterSettings()
            {
                OmitXmlDeclaration = omitXmlDeclaration, //是否省略xml声明
                ConformanceLevel = ConformanceLevel.Auto,
                Indent = indent //生成的xml是否缩进
            }))
            {
                if (useNameSpace)
                {
                    var xs = new XmlSerializer(obj.GetType());
                    xs.Serialize(xw, obj);
                }
                else
                {
                    XmlSerializerNamespaces namespaces = new XmlSerializerNamespaces();
                    namespaces.Add(string.Empty, string.Empty); //去除xml命名空间

                    var xs = new XmlSerializer(obj.GetType());
                    xs.Serialize(xw, obj, namespaces);
                }
            }

            //...:nil=\"true\"表示该值为空
            return sb.ToString();
        }

 

c# 序列化对象为xml 方法

标签:settings   声明   表示   div   indent   ace   creat   static   for   

原文地址:https://www.cnblogs.com/axel10/p/8992161.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!