我有一个与从xml文件中删除特定节点有关的问题。
以下是我的XML示例:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<nodeA attribute="1">
<nodeB attribute="table">
<nodeC attribute="500"></nodeC>
<nodeC attribute="5"></nodeC>
</nodeB>
<nodeB attribute="3">
<nodeC attribute="4"></nodeC>
<nodeC attribute="5"></nodeC>
<nodeC attribute="5"></nodeC>
</nodeB>
<nodeB attribute="placeHolder">
<nodeB attribute="toRemove">
<nodeB attribute="glass"></nodeB>
<nodeE attribute="7"></nodeE>
<nodeB attribute="glass"></nodeB>
<nodeB attribute="glass"></nodeB>
</nodeB>
</nodeB>
<nodeB attribute="3">
<nodeC attribute="4"></nodeC>
<nodeC attribute="5"></nodeC>
<nodeC attribtue="5"></nodeC>
</nodeB>
<nodeB attribute="placeHolder">
<nodeB attribute="toRemove">
<nodeB attribute="glass"></nodeB>
<nodeE attribute="7"></nodeE>
<nodeB attribute="glass"></nodeB>
<nodeB attribute="glass"></nodeB>
</nodeB>
</nodeB>
</nodeA>
</root>
我想删除节点nodeB="toRemove"
而不删除此节点的子节点。之后我需要用nodeB attribute="placeHolder"
做同样的事情。部分结果如下:
<nodeB attribute="3">
<nodeC attribute="4"></nodeC>
<nodeC attribute="5"></nodeC>
<nodeC attribtue="5"></nodeC>
</nodeB>
<nodeB attribute="glass"></nodeB>
<nodeE attribute="7"></nodeE>
<nodeB attribute="glass"></nodeB>
<nodeB attribute="glass"></nodeB>
我一直在尝试这样的代码来实现:
XmlNodeList nodeList = doc.SelectNodes("//nodeB[@attribute=\"toRemove\"]");
foreach (XmlNode node in nodeList)
{
foreach (XmlNode child in node.ChildNodes)
{
node.ParentNode.AppendChild(child);
}
node.ParentNode.RemoveChild(node);
}
doc.Save(XmlFilePathSource);
我能够找到具有所需属性toRemove或placeHolder的节点,但是我无法将此节点的子节点向上移动一级。在这种情况下你能帮我吗?它可以是Linq,XDocument,XmlReader的解决方案,但我更喜欢使用XmlDocument。 感谢您提前为我提供的任何帮助。
编辑:
在这种情况下,我使用了稍微修改过的代码(以保持顺序),Chuck Savage写道。一旦删除
<nodeB attribute="toRemove"> </nodeB>
然后用
做同样的事情 <nodeB attribute="placeHolder"></nodeB>
这是稍微修改过的代码
XElement root = XElement.Load(XmlFilePathSource);
var removes = root.XPathSelectElements("//nodeB[@attribute=\"toRemove\"]");
foreach (XElement node in removes.ToArray())
{
node.Parent.AddAfterSelf(node.Elements());
node.Remove();
}
root.Save(XmlFilePathSource);
@MiMo提供的xslt方法在这种情况下非常有用。
答案 0 :(得分:4)
问题在于,在枚举子节点时无法修改文档节点 - 您应该创建新节点而不是尝试修改现有节点,使用XmlDocument
会变得有点棘手。
进行此类转换的最简单方法是使用XSLT,即应用此XSLT:
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="nodeB[@attribute='toRemove' or @attribute='placeHolder']">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="text()">
</xsl:template>
<xsl:template match="@* | *">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
输出文件输出为:
<root>
<nodeA attribute="1">
<nodeB attribute="table">
<nodeC attribute="500" />
<nodeC attribute="5" />
</nodeB>
<nodeB attribute="3">
<nodeC attribute="4" />
<nodeC attribute="5" />
<nodeC attribute="5" />
</nodeB>
<nodeB attribute="glass" />
<nodeE attribute="7" />
<nodeB attribute="glass" />
<nodeB attribute="glass" />
<nodeB attribute="3">
<nodeC attribute="4" />
<nodeC attribute="5" />
<nodeC attribtue="5" />
</nodeB>
<nodeB attribute="glass" />
<nodeE attribute="7" />
<nodeB attribute="glass" />
<nodeB attribute="glass" />
</nodeA>
</root>
应用XSLT的代码很简单:
XslCompiledTransform transform = new XslCompiledTransform();
transform.Load(@"c:\temp\nodes.xslt");
transform.Transform(@"c:\temp\nodes.xml", @"c:\temp\nodes-cleaned.xml");
如果不可能(或不希望)将外部文件用于XSLT,则可以从字符串中读取它:
string xsltString =
@"<xsl:stylesheet
version='1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:output method=""xml"" indent=""yes""/>
<xsl:template match=""nodeB[@attribute='toRemove' or @attribute='placeHolder']"">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match=""text()"">
</xsl:template>
<xsl:template match=""@* | *"">
<xsl:copy>
<xsl:apply-templates select=""@* | node()""/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>";
XslCompiledTransform transform = new XslCompiledTransform();
using (StringReader stringReader = new StringReader(xsltString))
using (XmlReader reader = XmlReader.Create(stringReader)) {
transform.Load(reader);
}
transform.Transform(@"c:\temp\nodes.xml", @"c:\temp\nodes-cleaned.xml");
答案 1 :(得分:3)
使用Linq-to-XML和XPath,
XElement root = XElement.Load(XmlFilePathSource); // or .Parse(string)
var removes = root.XPathSelectElements("//nodeB[@attribute=\"toRemove\"]");
foreach (XElement node in removes.ToArray())
{
node.AddBeforeSelf(node.Elements());
node.Remove();
}
root.Save(XmlFilePathSource);
注意:System.Xml.XPath
注意2:您可以使用these extensions转换为/从XmlDocument转换,因为您更喜欢XmlDocument。
答案 2 :(得分:3)
我知道这是一个老问题,但我直接使用XmlDocument写了这个。
如果有人喜欢这样做,请添加它:
XmlNode child_to_remove = parent.ChildNodes[i]; // get the child to remove
// move all the children of "child_to_remove" to be the child of their grandfather (== parent)
while(child_to_remove.HasChildNodes)
parent.InsertBefore(child_to_remove.ChildNodes[0], child_to_remove);
parent.RemoveChild(child_to_remove);
就是这样:-),希望它能帮助任何人。