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='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)!

更多相关文章

  1. XML文件导入EXCEL
  2. xml学习(7) .net 获取xml节点或者属性最大值
  3. FireFox对XML的处理兼容IE的节点处理方法
  4. 读写xml所有节点个人小结 和 读取xml节点的数据总结
  5. 使用 XML 文件记录操作日志
  6. XMLTextReader和XmlDocument读取XML文件的比较
  7. 创建带有关联的 XML 架构的 XML 文件 && 从 XML 文件创建 XML 架
  8. 将图片读入到Dom中,并将其存为xml文件
  9. 广告控件中xml文件的写法

随机推荐

  1. 试玩Android(一)
  2. Android随笔之——Android ADB详解
  3. Android Native C/C++简介
  4. Android Dialog对话框的七种形式的使用
  5. Android中的布局方式(二)
  6. Android在TQ2440开发板上的移植
  7. android声音播放
  8. Android用Application设置全局变量以及使
  9. Android之Adapter用法总结
  10. Android学习笔记之Android包、ADB介绍