我正在尝试读取XML配置文件,进行一些调整(查找和删除或添加元素)并再次保存。我希望这个编辑尽可能不干扰,因为该文件将受源代码控制,我不希望无关紧要的更改导致合并冲突等。这大致是我所拥有的:
XDocument configDoc = XDocument.Load(fileName, LoadOptions.PreserveWhitespace);
// modifications to configDoc here
configDoc.Save(fileName, SaveOptions.DisableFormatting);
这里出现了一些问题:
encoding="utf-8"
被添加到xml声明中。<tag attr="val"/>
已更改为<tag attr="val" />
有没有什么方法可以减少对XDocument的侵扰,或者我是否必须尝试进行字符串编辑以获得我想要的内容?
答案 0 :(得分:5)
LINQ to XML对象模型不存储已解析的元素是标记为<foo/>
还是<foo />
,因此在保存时会丢失此类信息。如果你想确保某种格式,那么你可以扩展一个XmlWriter实现并覆盖它的http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.writeendelement.aspx,但这样你也不会保留输入格式,而是你会写出任何空元素<foo/>
或者你在方法中实现的任何格式。
可能会发生其他更改,例如加载文件时
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<head>
<title>Example</title>
</head>
<body>
<h1>Example</h1>
</body>
</html>
并将结果保存回来
<xhtml:html xmlns="http://www.w3.org/1999/xhtml" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:head>
<xhtml:title>Example</xhtml:title>
</xhtml:head>
<xhtml:body>
<xhtml:h1>Example</xhtml:h1>
</xhtml:body>
</xhtml:html>
因此,在使用XDocument / XElement加载/保存时,不要指望保留标记详细信息。
答案 1 :(得分:1)
要避免文档标题中的声明,您可以使用以下
XmlWriterSettings settings = new XmlWriterSettings();
settings.OmitXmlDeclaration = true;
using (XmlWriter xw = XmlWriter.Create(fileName, settings))
{
doc.Save(xw);
}