我正在尝试读取现有的XML文件,修改一堆节点的InnerTextAttribute值,然后将更改保存回该文件。

我正在使用下面的代码。保存XML文件后,它会弄乱格式。例如,某些节点之间的换行符消失了。如何保存(或重新格式化以及格式化和缩进)XML文件?

XmlDocument xDoc = new XmlDocument();
using (XmlReader xRead = XmlReader.Create(strXMLFilename))
{
    xDoc.Load(xRead);
}
//Makes changes to a few nodes
XmlWriterSettings xwrSettings = new XmlWriterSettings();
xwrSettings.IndentChars = "\t";
xwrSettings.NewLineHandling = NewLineHandling.Entitize;
xwrSettings.Indent = true;
xwrSettings.NewLineChars = "\n";
using (XmlWriter xWrite = XmlWriter.Create(strXMLFilename, xwrSettings))
{
    xDoc.Save(xWrite);
}

最佳答案

好的,因此XmlDocument对象默认情况下会忽略空格。我不得不强迫它保留这样的空白-

xDoc.PreserveWhitespace = true;


和BAM!问题解决了!

10-08 06:49