วิธีสร้างเอกสาร XML โดยใช้ XmlDocument


คำตอบ:


204

สิ่งที่เกี่ยวกับ:

#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) ไฟล์ XML ที่ถูกต้องจำเป็นต้องมีการประกาศ xml หรือไม่
(2) อะไรคือความแตกต่างระหว่าง String.Empty และ“” (empty string)?


ผลลัพธ์คือ:

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

แต่ฉันแนะนำให้คุณใช้LINQ เป็น XMLซึ่งง่ายกว่าและอ่านง่ายกว่าเช่นที่นี่:

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

5
ตัวอย่างแรกช่วยให้ฉันเขียนฟังก์ชันส่วนขยายสำหรับสไตล์ชีตXSLTซึ่งส่งคืนชุดของโหนดไปยังโปรเซสเซอร์ ขอบคุณ!
CodeManX

1
ฉันจะเถียงว่าถ้าคุณแทนที่XmlElementด้วยvarอันแรกจะง่ายกว่ามากที่จะทำงานด้วย
Robert Perry

1

การทำงานกับพจนานุกรม -> level2 ด้านบนมาจากพจนานุกรมในกรณีของฉัน (เผื่อว่าใครจะพบว่ามีประโยชน์) ลองดูตัวอย่างแรกพบข้อผิดพลาดนี้: "เอกสารนี้มีโหนด" DocumentElement "อยู่แล้ว" ฉันได้รับแรงบันดาลใจจากคำตอบที่นี่

และแก้ไขรหัสของฉัน: (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);
}

ทั้งสองเวอร์ชัน (1 และ 2 ภายใน foreach loop) ให้เอาต์พุต:

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

(หมายเหตุ: บรรทัดที่สาม "level2 เดียวกัน" ในพจนานุกรมสามารถเป็น level2 ได้เช่นกัน แต่ฉันต้องการเพิ่มความได้เปรียบของพจนานุกรม - ในกรณีของฉันฉันต้องการ level2 ที่มีชื่อต่างกัน

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.