如何加载 XmlNode 对象忽略未声明的命名空间?
我想加载 XmlNode 而不获取 <当存在无法识别的命名空间时,出现 href="http://msdn.microsoft.com/en-us/library/system.xml.xmlexception.aspx" rel="noreferrer">XmlException。
原因是因为我需要将 XMLNode 实例传递给方法。我正在加载具有脱离其原始上下文的名称空间的任意 XML 片段(例如,MSWord 格式和具有各种模式的其他软件产品,这些模式会使用其名称空间前缀“污染”内容)。命名空间对我或它所传递到的目标方法并不重要。 (这是因为目标方法将其用作 HTML 进行渲染,命名空间将自然被忽略或抑制。)
示例
下面是我尝试制作 XMLNode 的示例片段:
<p>
<div>
<st1:country-region w:st="on">
<st1:place w:st="on">Canada</st1:place>
</st1:country-region>
<hr />
<img src="xxy.jpg" />
</div>
</p>
当我尝试将其加载到 XmlDocument 实例(这是我获取 XmlNode 的尝试)我收到以下 XML 异常:
'st1' 是未声明的命名空间。第 3 行,位置 251。
如何从此类 XML 片段获取 XmlNode 实例?
I want to load up an XmlNode without getting an XmlException when an unrecognized namespace is present.
The reason is because I need to pass an XMLNode instance to a method. I'm loading up arbitrary XML fragments having namespaces out of their original context (e.g. MSWord formatting and other software products with various schemas that "pollute" the content with their namespace prefixes). The namespaces are not important to me or to the target method to which it's passed. (This is because the target method uses it as HTML for rendering and namespaces will be ignored or suppressed naturally.)
Example
Here's an example fragment I'm trying to make an XMLNode out of:
<p>
<div>
<st1:country-region w:st="on">
<st1:place w:st="on">Canada</st1:place>
</st1:country-region>
<hr />
<img src="xxy.jpg" />
</div>
</p>
When I try to load it into an XmlDocument instance (that's my attempt to get an XmlNode) I get the following XML Exception:
'st1' is an undeclared namespace. Line 3, position 251.
How do I go about getting an XmlNode instance from that kind of XML fragment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XmlTextReader
有一个Namespaces
属性,您可以关闭:XmlTextReader
has aNamespaces
property you can turn off: