.NET XML 无法解析保存时的实体

发布于 2024-09-13 10:40:28 字数 435 浏览 2 评论 0原文

我有一个简单的 XML 文件,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<foo attr="blah &#176; blah"/>

当我将其加载到 .NET XmlDocument 并发出“保存”时,即:

xmlDoc = New XmlDocument()
xmlDoc.Load("c:\temp\bar.xml")
xmlDoc.Save("c:\temp\bad.xml")

新的 XML 文件包含已解析的 amp 176(度数符号)。然后,这会破坏我试图将 XML 加载到的最终黑匣子。

我尝试过使用编码,效果甚微。解析器是否可以仅回显传入的内容,而不解析实体?有趣的是,它并没有解决&amp;#176;

I have a simple XML file like so:

<?xml version="1.0" encoding="UTF-8"?>
<foo attr="blah ° blah"/>

When I load it into the .NET XmlDocument and issue a Save, i.e.:

xmlDoc = New XmlDocument()
xmlDoc.Load("c:\temp\bar.xml")
xmlDoc.Save("c:\temp\bad.xml")

the new XML file contains the resolved amp 176 (a degree sign). This then breaks the final black box I'm trying to load the XML into.

I've tried playing with the encoding, to little effect. Is it possible for the parser to just echo what came in, without resolving the entities? Inerestingly, it doesn't resolve &#176;

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

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

发布评论

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

评论(1

与君绝 2024-09-20 10:40:28

XmlDocument Load 无法转义字符,也一直在使用它,但找不到任何关于如何阻止该行为的简单解决方案。

小黑客会

foreach (XmlNode xn in xdoc.SelectNodes("descendant-or-self::*"))
{
  foreach(XmlAttribute attr in xn.Attributes)
  {
    string val = System.Web.HttpUtility.HtmlEncode(attr.Value);
    attr.Value = val;
  }
  if (!xn.InnerXml.Contains("<"))
  {
    string val = System.Web.HttpUtility.HtmlEncode(xn.InnerText);
    xn.InnerText = val;
  }
}

在你 .Save(); 之前 做类似的事情
这是我不用花一整周时间就能想出的最好的办法。

XmlDocument Load unescapes the characters, also been playing around with it and cant find any easy solution on howto stop that behavior.

small hack would be doing something like this

foreach (XmlNode xn in xdoc.SelectNodes("descendant-or-self::*"))
{
  foreach(XmlAttribute attr in xn.Attributes)
  {
    string val = System.Web.HttpUtility.HtmlEncode(attr.Value);
    attr.Value = val;
  }
  if (!xn.InnerXml.Contains("<"))
  {
    string val = System.Web.HttpUtility.HtmlEncode(xn.InnerText);
    xn.InnerText = val;
  }
}

before you .Save();
thats the best I could come up with without using all week on this.

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