zoukankan      html  css  js  c++  java
  • 格式化XML:输出有缩进效果的XML字符串

    格式化XML:输出有缩进效果的XML字符串
    1. 一般情况下使用以下代码即可将XML字符串重新格式化:
            private string FormatXml(string source)
            {
                StringBuilder sb = new StringBuilder();
                XmlTextWriter writer = null;
               
                try
                {
                    XmlDocument doc = new XmlDocument();
                    doc.LoadXml(source);

                    writer = new XmlTextWriter(new StringWriter(sb));
                    writer.Formatting = Formatting.Indented;
                   
                    doc.WriteTo(writer);
                }
                finally
                {
                    if (writer != null) writer.Close();
                }

                return sb.ToString();
            }
    2. 在某些情况下如果需要对XML代码中的Attribute也应用缩进样式,这个时候可以通过重写XMLTextWriter类的WriteStartAttribute方法来实现:
    using System.IO;
    using System.Text;
    using System.Xml;

    namespace Test
    {
        public class XmlReformatter : XmlTextWriter
        {
            private XmlReader xr;

            private readonly StringWriter sw;

            public XmlReformatter(StringWriter sw) : base(sw)
            {
                this.sw = sw;
            }

            public override void WriteStartAttribute(string prefix, string localName, string ns)
            {
                StringBuilder sb = new StringBuilder("\r\n");

                int i = xr.Depth;

                for (i *= Indentation; i > 0; i--) sb.Append(IndentChar);

                sw.Write(sb.ToString());

                base.WriteStartAttribute(prefix, localName, ns);
            }

            public override void WriteNode(XmlReader reader, bool defattr)
            {
                xr = reader;
                base.WriteNode(reader, defattr);
            }
        }
    }
    调用示例:
            private string FormatXmlAttribute(string source)
            {
                StringBuilder sb = new StringBuilder();

                XmlTextReader tr = new XmlTextReader(new StringReader(source));

                XmlReformatter formatter = new XmlReformatter(new StringWriter(sb));
                formatter.Formatting = Formatting.Indented;
                formatter.WriteNode(tr, true);
                formatter.Flush();
                formatter.Close();

                tr.Close();

                return sb.ToString();
            }

  • 相关阅读:
    程序员开发网站必知的知识点
    自己动手写Session
    数据显示控件的通用分页代码
    自己动手写验证码
    ASP.NET高级技术个人随笔
    About Exception Handling
    使用CruiseControl搭建自己的持续集成环境
    Exception about "Could not load file or assembly Namespace.Components' or one of its dependencies."
    Do I need the Application Server role for a web server?
    A networkrelated or instancespecific error occurred while establishing a connection to SQL Server
  • 原文地址:https://www.cnblogs.com/samcn/p/1588159.html
Copyright © 2011-2022 走看看