重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
今天小编给大家分享的是创建xml文件的代码,很多人都不太了解,今天小编为了让大家更加了解创建xml文件的方法,所以给大家总结了以下内容,一起往下看吧。一定会有所收获的哦。
目前创新互联建站已为1000多家的企业提供了网站建设、域名、网站空间、网站托管运营、企业网站设计、屏边网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。////// 创建一个xml文件 /// /// 文件名字 private void createXmlDoc(string fileName) { string row= System.Environment.NewLine; XmlDocument xmlDoc = new XmlDocument(); XmlDeclaration xde ;//表示 XML 声明节点: 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文件的代码的简略介绍,当然详细使用上面的不同还得要大家自己使用过才领会。如果想了解更多,欢迎关注创新互联行业资讯频道哦!