所以我有一个庞大的XML文件,其中包含与此类似的结构:
<Item ItemId=";ResTVersion" ItemType="0" PsrId="245" Leaf="false">
<Disp Icon="Str" Expand="true" Disp="true" LocTbl="false" Order="13352" />
<Modified By="sachink" DateTime="2008-12-16T19:02:35Z" />
<PsrProps>
<Str Name="Kii" Val="yyyyyyyyyyyyy" />
</PsrProps>
<Item ItemId=";ResTFileVersion" ItemType="0;ResT" PsrId="245" InstFlg="true" Leaf="true">
<Str Cat="Text" UsrLk="true">
<Val><![CDATA[ttttttttt]]></Val>
<Tgt Cat="Text" Orig="New">
<Val><![CDATA[ttttttttt]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" Order="13353" />
<Modified By="sachink" DateTime="2008-12-16T19:02:35Z" />
<Cmts>
<Cmt Name="Dev"><![CDATA[{Locked}]]></Cmt>
</Cmts>
</Item>
<Item ItemId=";ResTLanguageTag" ItemType="0;ResT" PsrId="245" InstFlg="true" Leaf="true">
<Str Cat="Text" UsrLk="true">
<Val><![CDATA[en-US]]></Val>
<Tgt Cat="Text" Orig="New">
<Val><![CDATA[en-US]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" Order="13354" />
<Modified By="sachink" DateTime="2008-12-16T19:02:35Z" />
<Cmts>
<Cmt Name="Dev"><![CDATA[=.ABVUDHUIDSHFUIDSHFUISHDFUIDSH iusdhfUIHAs]]></Cmt>
</Cmts>
</Item>
</Item>
我有几个项ID,我想创建一个尊重旧结构的新xml。 我使用此代码检索我想要的节点,然后创建新的XML。
XmlNodeList nodes = originalXML.SelectNodes("//*[contains(@ItemId,'" + id + "')]");
所以我想要删除一些节点,但我只有我想要保留的节点的ID。 问题是当你使用selectnodes函数时,如何保持xml的外部结构来获取内部节点?
谢谢!
答案 0 :(得分:0)
我会采取相反的方式:删除你不需要的东西。从头开始构建XmlDocument很困难(需要大量编码)。
答案 1 :(得分:0)
我认为您最好从已有的结构中删除不需要的节点。
XmlNodeList nodes = originalXML.SelectNodes("/*[not(contains(@test,'test'))]")
foreach(XmlNode node in nodes)
originalXML.RemoveChild(node);
应该有用。
如果您需要保留原始结构,可以originalXML.Clone()
。
旁注:您可能希望调查System.Xml.Linq.XDocument
和System.Xml.Linq.XElement
我发现这些更容易使用。