如何使用c# xml生成文件

avatar
作者
筋斗云
阅读量:0

在C#中生成XML文件需要使用XmlDocument类。以下是一个简单的示例代码,演示如何使用C#创建一个名为"example.xml"的XML文件并添加节点和属性:

using System; using System.Xml;  class Program {     static void Main()     {         // 创建一个新的XML文档         XmlDocument doc = new XmlDocument();          // 创建XML声明         XmlDeclaration xmlDeclaration = doc.CreateXmlDeclaration("1.0", "UTF-8", null);         doc.AppendChild(xmlDeclaration);          // 创建根节点         XmlElement root = doc.CreateElement("Root");         doc.AppendChild(root);          // 创建子节点         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文件,内容如下:

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

通过这种方式,您可以使用C#创建并编辑XML文件。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!