我是靠谱客的博主 完美鼠标,这篇文章主要介绍xml学习(4) 创建xml 文件,现在分享给大家,希望可以做个参考。

xml学习(4) 创建xml 文件

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/// <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 文件的内容,更多相关内容请关注靠谱客(www.uoften.com)!


最后

以上就是完美鼠标最近收集整理的关于xml学习(4) 创建xml 文件的全部内容,更多相关xml学习(4)内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(101)

评论列表共有 0 条评论

立即
投稿
返回
顶部