xml学习(4) 创建xml 文件

发布时间:2022-05-15 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了xml学习(4) 创建xml 文件脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
XMl学习(4) 创建xML 文件

  /// <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=&#39;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);
    }

以上就是xml学习(4) 创建xml 文件的内容,更多相关内容请关注PHP中文网(www.php.cn)!

脚本宝典总结

以上是脚本宝典为你收集整理的xml学习(4) 创建xml 文件全部内容,希望文章能够帮你解决xml学习(4) 创建xml 文件所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:xml