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();
            }
  • 相关阅读:
    在 Tomcat 8 部署多端口项目
    tar -zxvf jdk-8u144-linux-x64.tar.gz
    linux下删除文件夹的命令
    springboot+mybatis案例
    阿里云主机密码
    查看公钥
    jenkins安装
    redis详解(包含使用场景)
    什么是JSONP?
    在CentOS7上面搭建GitLab服务器
  • 原文地址:https://www.cnblogs.com/axel10/p/8992161.html
Copyright © 2011-2022 走看看