Prevent XmlTextReader from expanding entities

非 Y 不嫁゛ 提交于 2019-12-09 15:55:31

问题


I am trying to read a XML document without expanding the entities, do some manipulations to it, and re-save it with the unexpanded entities as they were initially.

When using the XDocument directly, it fails to load, throwing an exception tell me it has unexpanded entities:

XDocument doc = XDocument.Load(file);  // <--- Exception
// ... do some manipulation to doc
doc.Save(file2);

Exception: Reference to undeclared entity 'entityname'.

Then I tried to pass the XmlTextReader to the XDocument constructor, but the EntityHandling property does not have "no expand":

XmlTextReader xmlReader = new XmlTextReader(file));
xmlReader.EntityHandling = EntityHandling.ExpandCharEntities;
XDocument doc = XDocument.Load(xmlReader);

Also, I have looked at the XmlReader.Create function, but MSDN says: "readers created by the Create method expand all entities".

How can I create a XmlReader that does not expand entities, or have a XDocument with entities not expanded?


回答1:


The following worked for me. The key is using reflection to set the value of an internal property DisableUndeclaredEntityCheck.

XmlDocument document = new XmlDocument();
XmlReaderSettings readerSettings = new XmlReaderSettings()
{
    DtdProcessing = DtdProcessing.Ignore,
    IgnoreWhitespace = true,
};
using (XmlReader reader = XmlReader.Create(inputPath, readerSettings))
{
    PropertyInfo propertyInfo = reader.GetType().GetProperty("DisableUndeclaredEntityCheck", BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
    propertyInfo.SetValue(reader, true);
    document.Load(reader);
}



回答2:


decasteljau! The funny thing that I found your post searching how to solve my problem. And my problem was related to case when entities are not resolved at all. So thank you for answer for my question. And the following is answer to your question: please, use XmlDocument.

XDocument document = XDocument.Load("test.xml"); XmlWriterSettings settings = new XmlWriterSettings(); settings.Indent = true; using (XmlWriter writer = XmlWriter.Create(Console.Out, settings)) { document.WriteTo(writer); } Console.WriteLine();



来源:https://stackoverflow.com/questions/3504227/prevent-xmltextreader-from-expanding-entities

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!