Wie erstelle ich ein XML-Dokument mit XmlDocument?

83

Wie erstelle ich ein XML-Dokument wie dieses?

<body>
  <level1>
    <level2>text</level2>
    <level2>other text</level2>
  </level1>
</body>

Verwenden XmlDocumentin C #

user1480049
quelle
8
Verwenden Sie stattdessen XDocument stackoverflow.com/questions/4562571/…
Amiram Korach

Antworten:

195

Wie wäre es mit:

#region Using Statements
using System;
using System.Xml;
#endregion 

class Program {
    static void Main( string[ ] args ) {
        XmlDocument doc = new XmlDocument( );

        //(1) the xml declaration is recommended, but not mandatory
        XmlDeclaration xmlDeclaration = doc.CreateXmlDeclaration( "1.0", "UTF-8", null );
        XmlElement root = doc.DocumentElement;
        doc.InsertBefore( xmlDeclaration, root );

        //(2) string.Empty makes cleaner code
        XmlElement element1 = doc.CreateElement( string.Empty, "body", string.Empty );
        doc.AppendChild( element1 );

        XmlElement element2 = doc.CreateElement( string.Empty, "level1", string.Empty );
        element1.AppendChild( element2 );

        XmlElement element3 = doc.CreateElement( string.Empty, "level2", string.Empty );
        XmlText text1 = doc.CreateTextNode( "text" );
        element3.AppendChild( text1 );
        element2.AppendChild( element3 );

        XmlElement element4 = doc.CreateElement( string.Empty, "level2", string.Empty );
        XmlText text2 = doc.CreateTextNode( "other text" );
        element4.AppendChild( text2 );
        element2.AppendChild( element4 );

        doc.Save( "D:\\document.xml" );
    }
}

(1) Erfordert eine gültige XML-Datei eine XML-Deklaration?
(2) Was ist der Unterschied zwischen String.Empty und "" (leerer String)?


Das Ergebnis ist:

<?xml version="1.0" encoding="UTF-8"?>
<body>
  <level1>
    <level2>text</level2>
    <level2>other text</level2>
  </level1>
</body>

Ich empfehle Ihnen jedoch, LINQ to XML zu verwenden , das einfacher und lesbarer ist als hier:

#region Using Statements
using System;
using System.Xml.Linq;
#endregion 

class Program {
    static void Main( string[ ] args ) {
        XDocument doc = new XDocument( new XElement( "body", 
                                           new XElement( "level1", 
                                               new XElement( "level2", "text" ), 
                                               new XElement( "level2", "other text" ) ) ) );
        doc.Save( "D:\\document.xml" );
    }
}
Omar
quelle
5
Das erste Beispiel hat mir geholfen, eine Erweiterungsfunktion für ein XSLT- Stylesheet zu schreiben , das eine Reihe von Knoten an den Prozessor zurückgibt. Vielen Dank!
CodeManX
1
Ich würde argumentieren , dass , wenn Sie die Fassung XmlElementmit var, die ersten wäre an der Arbeit viel leichter sein , mit
Robert Perry
1

Die Arbeit mit einem Wörterbuch -> Level2 oben stammt aus einem Wörterbuch in meinem Fall (nur für den Fall, dass es jemand nützlich findet). Beim ersten Beispiel bin ich auf diesen Fehler gestoßen: "Dieses Dokument hat bereits einen 'DocumentElement'-Knoten." Die Antwort hier hat mich inspiriert

und habe meinen Code bearbeitet: (xmlDoc. DocumentElement .AppendChild (body))

//a dictionary:
Dictionary<string, string> Level2Data 
{
    {"level2", "text"},
    {"level2", "other text"},
    {"same_level2", "more text"}
}
//xml Decalration:
XmlDocument xmlDoc = new XmlDocument();
XmlDeclaration xmlDeclaration = xmlDoc.CreateXmlDeclaration("1.0", "UTF-8", null);
XmlElement root = xmlDoc.DocumentElement;
xmlDoc.InsertBefore(xmlDeclaration, root);
// add body
XmlElement body = xmlDoc.CreateElement(string.Empty, "body", string.Empty);
xmlDoc.AppendChild(body);
XmlElement body = xmlDoc.CreateElement(string.Empty, "body", string.Empty);
xmlDoc.DocumentElement.AppendChild(body); //without DocumentElement ->ERR



foreach (KeyValuePair<string, string> entry in Level2Data)
{
    //write to xml: - it works version 1.
    XmlNode keyNode = xmlDoc.CreateElement(entry.Key); //open TAB
    keyNode.InnerText = entry.Value;
    body.AppendChild(keyNode); //close TAB

    //Write to xmml verdion 2: (uncomment the next 4 lines and comment the above 3 - version 1
    //XmlElement key = xmlDoc.CreateElement(string.Empty, entry.Key, string.Empty);
    //XmlText value = xmlDoc.CreateTextNode(entry.Value);
    //key.AppendChild(value);
    //body.AppendChild(key);
}

Beide Versionen (1 und 2 innerhalb jeder Schleife) geben die Ausgabe aus:

<?xml version="1.0" encoding="UTF-8"?>
<body>
    <level1>
        <level2>text</level2>
        <level2>ther text</level2>
         <same_level2>more text</same_level2>
    </level1>
</body>

(Hinweis: Die dritte Zeile "gleiche Ebene2" im Wörterbuch kann auch Ebene2 sein wie die anderen, aber ich wollte den Vorteil des Wörterbuchs veranschaulichen - in meinem Fall brauchte ich Ebene2 mit unterschiedlichen Namen.

Teo
quelle