禁用对 XML 实体的引用

发布于 2024-07-22 21:43:03 字数 332 浏览 7 评论 0原文

我目前正在开发的程序必须从 XML 流中读取数据,有时可能包含“&” 符号

,即:

<XMLRoot>
    <Element>
        <Node>
            This is a dummy data&more!
        </Node>
    </Element>
</XMLRoot>

当我解析此文本时,我收到一条错误消息,告诉我“引用未声明的实体”。

有没有办法用 C# 的 XMLParser 删除“实体检查”?

I am currently working on program that must read data from a XML stream that some time may contains '&' symbols

i.e :

<XMLRoot>
    <Element>
        <Node>
            This is a dummy data&more!
        </Node>
    </Element>
</XMLRoot>

When I parse this text I get an error message telling me 'reference to undeclare entity'.

Is there a way to remove 'entity check' with the C#'s XMLParser?

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

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

发布评论

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

评论(1

小嗲 2024-07-29 21:43:03

我相信问题是您发布的 XML 是格式错误的 XML,“&” 是 XML 中的保留字符,需要对其进行转义或包含在 CDATA 部分中:

<XMLRoot>
<Element>
    <Node>
        This is a dummy data&more!
    </Node>
</Element>
</XMLRoot>

或者:

<XMLRoot>
<Element>
    <Node>
        <![CDATA[ This is a dummy data&more! ]]>
    </Node>
</Element>
</XMLRoot>

I believe the problem is the XML you posted is a malformed XML, "&" is a reserved character in XML and it needs to be escaped or enclosed in a CDATA section:

<XMLRoot>
<Element>
    <Node>
        This is a dummy data&more!
    </Node>
</Element>
</XMLRoot>

Or:

<XMLRoot>
<Element>
    <Node>
        <![CDATA[ This is a dummy data&more! ]]>
    </Node>
</Element>
</XMLRoot>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文