0

我知道这似乎是一个愚蠢的问题,我曾尝试检查 msdn 文档并搜索此站点一段时间。不幸的是,我无法真正理解如何做到这一点。

我想在第二个或第三个孩子之后插入一个节点。我的 XML 的主要内容在它的孙子中,当我使用 root.insertafter 时,我把它放在第一个孩子之后。

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");

任何帮助将不胜感激。

4

2 回答 2

3

感谢您的帮助@Mikkelbu。

然而,我找到了解决我的问题的方法,我现在可以在哪里完成我试图实现的目标。

如下:

XmlNode parentNode = document.SelectSingleNode("myCourse/courseStructure/level4");
            parentNode.InsertBefore(newModule, parentNode.FirstChild);
于 2012-05-11T07:13:01.497 回答
0

如果我理解您的问题是正确的,那么您想在带有标题的模块之后插入新模块Computer Systems Fundamentals。如果是这样,那么您需要更改插入的根。所以你可以换行

XmlElement root = document.DocumentElement;

XmlNode root = document.DocumentElement.LastChild;

我还将变量名称root更改为例如courseStructureNode,并相应地更正注释。

附言。要编译代码,您还需要更改newBooknewModule.

于 2012-05-08T12:26:02.493 回答