XML CDATA 编码

发布于 2024-07-23 22:38:47 字数 581 浏览 5 评论 0原文

我正在尝试使用 CDATA 在 C# 中构建 XML 文档,以将文本保存在元素内。 例如..

<email>
<![CDATA[[email protected]]]>
</email>

但是,当我获取文档的 InnerXml 属性时,CDATA 已重新格式化,因此 InnerXml 字符串如下所示,但失败。

<email>
&lt;![CDATA[[email protected]]]&gt;
</email>

访问XML字符串时如何保持原始格式?

干杯

I am trying to build an XML document in C# with CDATA to hold the text inside an element. For example..

<email>
<![CDATA[[email protected]]]>
</email>

However, when I get the InnerXml property of the document, the CDATA has been reformatted so the InnerXml string looks like the below which fails.

<email>
<![CDATA[[email protected]]]>
</email>

How can I keep the original format when accessing the string of the XML?

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无尽的现实 2024-07-30 22:38:47

使用 XmlDocument

    XmlDocument doc = new XmlDocument();
    XmlElement email = (XmlElement)doc.AppendChild(doc.CreateElement("email"));
    email.AppendChild(doc.CreateCDataSection("[email protected]"));
    string xml = doc.OuterXml;

或使用 XElement

    XElement email = new XElement("email", new XCData("[email protected]"));
    string xml = email.ToString();

With XmlDocument:

    XmlDocument doc = new XmlDocument();
    XmlElement email = (XmlElement)doc.AppendChild(doc.CreateElement("email"));
    email.AppendChild(doc.CreateCDataSection("[email protected]"));
    string xml = doc.OuterXml;

or with XElement:

    XElement email = new XElement("email", new XCData("[email protected]"));
    string xml = email.ToString();
玩世 2024-07-30 22:38:47

不要使用 InnerText:使用 XmlDocument.CreateCDataSection

using System;
using System.Xml;

public class Test
{
    static void Main()
    {
        XmlDocument doc = new XmlDocument();
        XmlElement root = doc.CreateElement("root");
        XmlElement email = doc.CreateElement("email");
        XmlNode cdata = doc.CreateCDataSection("[email protected]");

        doc.AppendChild(root);
        root.AppendChild(email);
        email.AppendChild(cdata);

        Console.WriteLine(doc.InnerXml);
    }
}

Don't use InnerText: use XmlDocument.CreateCDataSection:

using System;
using System.Xml;

public class Test
{
    static void Main()
    {
        XmlDocument doc = new XmlDocument();
        XmlElement root = doc.CreateElement("root");
        XmlElement email = doc.CreateElement("email");
        XmlNode cdata = doc.CreateCDataSection("[email protected]");

        doc.AppendChild(root);
        root.AppendChild(email);
        email.AppendChild(cdata);

        Console.WriteLine(doc.InnerXml);
    }
}
俏︾媚 2024-07-30 22:38:47

有关信息,请参阅 XmlDocument::CreateCDataSection 方法以及如何在 XML 文档中创建 CDATA 节点的示例

See XmlDocument::CreateCDataSection Method for information and examples how to create CDATA nodes in an XML Document

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文