xml学习(4) 创建xml 文件

17 篇文章 1 订阅
10 篇文章 1 订阅
    
  /// <summary>
    /// 创建一个xml文件
    /// </summary>
    /// <param name="fileName">文件名字</param>
    private void createXmlDoc(string fileName)
    {
      string  row=  System.Environment.NewLine;  
        XmlDocument xmlDoc = new XmlDocument();
        XmlDeclaration xde  ;//表示 XML 声明节点:<?xml version='1.0'...?>
        xde = xmlDoc.CreateXmlDeclaration("1.0", "ISO-8859-1", null);//verson:1.0 encoding:utf-8  standalone:yes(表示独立的,不依赖别的文件)
        xmlDoc.AppendChild(xde);
        XmlElement root = xmlDoc.CreateElement("BOOKS");
        root.SetAttribute("name", "根级元素");
        xmlDoc.AppendChild(root);

        XmlElement node1 = xmlDoc.CreateElement("BOOK");
        root.AppendChild(node1);

        XmlElement node11 = xmlDoc.CreateElement("AUTHOR");
        node11.InnerText = "XMROOM";
        node1.AppendChild(node11);

        XmlElement node12 = xmlDoc.CreateElement("NAME");
        node12.InnerText = "编程你最爱";
        node1.AppendChild(node12);

        XmlElement node13 = xmlDoc.CreateElement("TIME");
        node13.InnerText = "2013-11-20";
        node1.AppendChild(node13);

        XmlElement node14 = xmlDoc.CreateElement("COPYRIGHT");
        node14.InnerText = "XMROOM";
        node1.AppendChild(node14);

        string path = Server.MapPath("Xml\\") + fileName + ".xml";

        if (File.Exists(path))
        {
            File.Delete(path);
            
        }
        xmlDoc.Save(path);
    }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值