解码xml中的cdata内容

时间:2011-09-02 02:50:34

标签: asp.net cdata

客户向我们发送了一个XML文件,其中包含XML编码的CDATA内容 即<![CDATA[some content]]>

asp.net用解码版本替换XML文件中的内容的最佳方法是什么? (不要求客户向我们发送正确的文件)

感谢

1 个答案:

答案 0 :(得分:0)

这可能不是你想要的,但它至少会给你一个开始:

using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.Security;

namespace CSSandbox
{
    class Program
    {
        static void Main(string[] args)
        {
            string oldXml = "<root><child>No CDATA here</child><child><![CDATA[Illegal xml & <> '' bobby tables]]></child><child><child><![CDATA[More CDATA &&&]]></child></child></root>";
            Console.WriteLine(oldXml);
            XmlDocument doc = new XmlDocument();
            doc.LoadXml(oldXml);

            ProcessNodes(doc, doc.ChildNodes);

            string newXml = doc.OuterXml;
            Console.WriteLine(newXml);

            Console.ReadLine();
        }
        static void ProcessNodes(XmlDocument doc, XmlNodeList nodes)
        {
            foreach (XmlNode node in nodes)
            {
                if (node.HasChildNodes)
                {
                    ProcessNodes(doc, node.ChildNodes);
                }
                else
                {
                    if (node is XmlCDataSection)
                    {
                        string cdataText = node.InnerText;
                        node.ParentNode.InnerXml = SecurityElement.Escape(cdataText);
                    }
                }
            }
        }
    }
}

这假设您的cdata块是当前节点的唯一子节点(根据我的测试)。