using System.Xml; //导入命名空间
/// <summary>
/// 使用C#创建一个XML文件
/// </summary>
public void CreateXML()
{
XmlDocument doc = new XmlDocument();
//创建第一行的描述信息
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.AppendChild(dec); //添加到文档中
//给文档添加根节点 并将根节点添加到文档对象
XmlElement typeB = doc.CreateElement("typeB");
typeB.SetAttribute("version", "1.0"); //设置节点的属性和属性值
doc.AppendChild(typeB); //将根节点添加到文档中
//创建子节点
XmlElement programList = doc.CreateElement("ProgramList"); //创建子节点programList
typeB.AppendChild(programList); //将创建的子节点添加到typeB根节点下
XmlElement playTime = doc.CreateElement("PlayTime"); //创建一个子节点名为playTime
playTime.InnerXml = "<a>2018</a>"; //为这个子节点添加标签以及内容
programList.AppendChild(playTime); //将这个子节点添加到programList节点下
//保存文件
doc.Save("凤凰卫视.xml"); //可以指定保存路径,我这里直接写会默认保存在项目Bin\DeBug文件夹下
MessageBox.Show("保存成功!");
}
|
请发表评论