.NET XML 无法解析保存时的实体
我有一个简单的 XML 文件,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<foo attr="blah ° blah"/>
当我将其加载到 .NET XmlDocument 并发出“保存”时,即:
xmlDoc = New XmlDocument()
xmlDoc.Load("c:\temp\bar.xml")
xmlDoc.Save("c:\temp\bad.xml")
新的 XML 文件包含已解析的 amp 176(度数符号)。然后,这会破坏我试图将 XML 加载到的最终黑匣子。
我尝试过使用编码,效果甚微。解析器是否可以仅回显传入的内容,而不解析实体?有趣的是,它并没有解决&#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 °
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XmlDocument Load 无法转义字符,也一直在使用它,但找不到任何关于如何阻止该行为的简单解决方案。
小黑客会
在你 .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
before you .Save();
thats the best I could come up with without using all week on this.