XmlDocument xmldoc = new XmlDocument();
xmldoc.XmlResolver = null;
xmldoc.Load("URL");
XmlWriter xmlWrite = XmlWriter.Create(@Server.MapPath("Test.xml"));
xmldoc.Save(xmlWrite);
xmlWrite.Close();
以上是我用来读取 XML 文件的代码。我正在加载的 XML 包含类似的实体nbsp;
,因此,代码抛出了 XMLException:
引用未声明的实体“nbsp”