我如何在另一个节点中创建和插入一个节点

how do i create and insert a node inside another node

我试图在 C# 中的现有 xml 文档中插入一个 xml 节点和另一个 xml 子节点。 我有一个 XML 文档,看起来像这样:

<?xml version="1.0" encoding="utf-16"?>
<DictionarySerializer>
    <item>
        <key>statusCode</key>
        <value>0</value>
    </item>
    <item>
        <key>statusSeverity</key>
        <value>INFO</value>
    </item>
    <item>
        <key>statusMessage</key>
        <value>Status OK</value>
    </item>
    <item>
        <key>MerchantAccountNumber</key>
        <value>9999999999</value>
    </item>
    <item>
        <key>ReconBatchID</key>
        <value>420150418 1Q02144266965047801046AUTO04</value>
    </item>
    <item>
        <key>PaymentGroupingCode</key>
        <value>3</value>
    </item>
    <item>
        <key>responsePaymentStatus</key>
        <value>Completed</value>
    </item>
    <item>
        <key>TxnAuthorizationTime</key>
        <value>2015-04-18T09:14:41</value>
    </item>
    <item>
        <key>TxnAuthorizationStamp</key>
        <value>1429348481</value>
    </item>
    <item>
        <key>ClientTransID</key>
        <value>aidjl79f</value>
    </item>
</DictionarySerializer>

而且我需要再插入一个节点,底部有一个节点和一个节点。 到目前为止我有这个:

  XmlDocument xmlCustomValues = new XmlDocument();
            xmlCustomValues.LoadXml(OldCustomValues);
            XmlNode NodeItem = xmlCustomValues.SelectSingleNode("DictionarySerializer");
            XmlNode NodeNewItem = xmlCustomValues.CreateNode(XmlNodeType.Element, "item", null);
    XmlNode NodeNewKey = NodeNewItem.??????

但不确定如何在 NodeNewItem 下创建节点(没有 "CreateNode" 方法)。以前从来没有这样做过(显然)而且语法对我来说没有意义。


这是一个有效的答案(上面 XML 文档的测试代码)

  string OldCustomValues = this.txtInput.Text;
    XmlDocument xmlCustomValues = new XmlDocument();
    xmlCustomValues.LoadXml(OldCustomValues);
    XmlNode NodeItem = xmlCustomValues.SelectSingleNode("DictionarySerializer");
    XmlNode NodeNewItem = xmlCustomValues.CreateNode(XmlNodeType.Element, "item", null);
    NodeItem.AppendChild(NodeNewItem);
    XmlNode NodeNewKey = xmlCustomValues.CreateNode(XmlNodeType.Element, "key", null);
    NodeNewKey.InnerText = "MyKey";
    XmlNode NodeNewValue = xmlCustomValues.CreateNode(XmlNodeType.Element, "value", null);
    NodeNewValue.InnerText = "MyValue";
    NodeNewItem.AppendChild(NodeNewKey);
    NodeNewItem.AppendChild(NodeNewValue);

    this.txtOutput.Text = xmlCustomValues.OuterXml;

您已经创建了节点,您只需要将节点附加到根

NodeItem.AppendChild(NodeNewItem);