溫馨提示×

如何使用c# xml生成文件

c#
小樊
120
2024-06-28 14:39:30
欄目: 編程語言

在C#中生成XML文件需要使用XmlDocument類。以下是一個簡單的示例代碼,演示如何使用C#創(chuàng)建一個名為"example.xml"的XML文件并添加節(jié)點和屬性:

using System;
using System.Xml;

class Program
{
    static void Main()
    {
        // 創(chuàng)建一個新的XML文檔
        XmlDocument doc = new XmlDocument();

        // 創(chuàng)建XML聲明
        XmlDeclaration xmlDeclaration = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
        doc.AppendChild(xmlDeclaration);

        // 創(chuàng)建根節(jié)點
        XmlElement root = doc.CreateElement("Root");
        doc.AppendChild(root);

        // 創(chuàng)建子節(jié)點
        XmlElement child = doc.CreateElement("Child");
        child.InnerText = "Hello World!";
        root.AppendChild(child);

        // 添加屬性
        XmlAttribute attribute = doc.CreateAttribute("Attribute");
        attribute.Value = "Value";
        child.Attributes.Append(attribute);

        // 保存XML文件
        doc.Save("example.xml");

        Console.WriteLine("XML文件已生成!");
    }
}

運行以上代碼后,會生成一個名為"example.xml"的XML文件,內(nèi)容如下:

<?xml version="1.0" encoding="UTF-8"?>
<Root>
  <Child Attribute="Value">Hello World!</Child>
</Root>

通過這種方式,您可以使用C#創(chuàng)建并編輯XML文件。

0