xmlnode insertafter secondchild...or third?
本文关键字:third or secondchild insertafter xmlnode | 更新日期: 2023-09-27 18:33:02
我知道这似乎是一个愚蠢的问题,我已经尝试检查msdn文档并搜索此站点一段时间。不幸的是,我无法真正了解如何做到这一点。
我想在第二个或第三个孩子之后插入一个节点。我的XML的主要内容在于它的孙子,当我使用root.insert之后,我把它放在第一个孩子之后。
.XML:
<myCourse>
<courseName>BEng Mobile and Web Computing</courseName>
<courseStructure>
<module>
<moduleTitle>Programming Methodology</moduleTitle>
<credits>15</credits>
<semester>1</semester>
</module>
<module>
<moduleTitle>Computer Systems Fundamentals</moduleTitle>
<credits>15</credits>
<semester>1</semester>
</module>
</courseStructure>
</myCourse>
和代码:
private void buttonCreateNode_Click(object sender, EventArgs e)
{
// Load the XML document.
XmlDocument document = new XmlDocument();
document.Load(@"temp.xml");
// Get the root element.
XmlElement root = document.DocumentElement;
// Create the new nodes.
XmlElement newModule = document.CreateElement("module");
XmlElement newTitle = document.CreateElement("moduleTitle");
XmlElement newCredits = document.CreateElement("credits");
XmlElement newSemester = document.CreateElement("semester");
XmlText title = document.CreateTextNode("ECA411");
XmlText credits = document.CreateTextNode("15");
XmlText semester = document.CreateTextNode("1");
// Insert the elements.
newBook.AppendChild(newTitle);
newBook.AppendChild(newCredits);
newBook.AppendChild(newSemester);
newTitle.AppendChild(title);
newCredits.AppendChild(credits);
newSemester.AppendChild(semester);
root.InsertAfter(newModule, root.LastChild);
document.Save(@"temp.xml");
任何帮助将不胜感激。
感谢您@Mikkelbu的帮助。
然而,我已经找到了解决我的问题的方法,我现在能够完成我试图实现的目标。
如下:
XmlNode parentNode = document.SelectSingleNode("myCourse/courseStructure/level4");
parentNode.InsertBefore(newModule, parentNode.FirstChild);
如果我
理解您的问题是正确的,那么您想在标题为 Computer Systems Fundamentals
的模块之后插入新模块。如果是这样,那么您需要更改插入的根。所以你可以改变线路
XmlElement root = document.DocumentElement;
自
XmlNode root = document.DocumentElement.LastChild;
我还会将变量名称root
更改为例如courseStructureNode
并相应地更正注释。
附言。要编译代码,您还需要将newBook
更改为 newModule
。