zoukankan      html  css  js  c++  java
  • c# 序列化对象为xml 方法

            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();
            }
  • 相关阅读:
    ChineseAlphabetUtil获取汉字首字母工具类
    RandomCodeUtil随机数工具类,随机生成数字、字母、数字字母组合、中文姓名
    ValidateUtil常用验证工具类,如手机、密码、邮箱等
    聊天项目
    日期
    字符串
    java中属性,set get 以及如何学习类的一些用法
    继承 多态 封装
    方法 属性 构造方法和包
    面向对象知识
  • 原文地址:https://www.cnblogs.com/axel10/p/8992161.html
Copyright © 2011-2022 走看看