创建带属性的XML文档

Posted 影落明湖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建带属性的XML文档相关的知识,希望对你有一定的参考价值。

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;

namespace 创建带属性的XML文档
{
    class Program
    {
        static void Main(string[] args)
        {
            XmlDocument doc = new XmlDocument();
            XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);
            doc.AppendChild(dec);

            XmlElement order = doc.CreateElement("Order");
            doc.AppendChild(order);

            XmlElement customerName = doc.CreateElement("CustomerName");
            customerName.InnerText = "肚子好饿";
            order.AppendChild(customerName);

            XmlElement items = doc.CreateElement("Items");
            order.AppendChild(items);

            XmlElement orderItem1 = doc.CreateElement("orderItem");
            orderItem1.SetAttribute("Name", "炒粉干");
            orderItem1.SetAttribute("Count", "2");
            items.AppendChild(orderItem1);

            doc.Save("Order.xml");
            Console.WriteLine("保存成功");
            Console.ReadKey();
        }
    }
}

 

以上是关于创建带属性的XML文档的主要内容,如果未能解决你的问题,请参考以下文章

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

在 Groovy 中将字符串 XML 片段转换为文档节点

在 sapui5 片段的 xml 文件中使用 jquery

需要示例代码片段帮助

为动态创建的 Android 片段提供自定义属性值

LINQ to XML - 从文件加载 XML 片段