创建带属性的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代码片段,该代码片段中每个属性的含义与用途