xml基础一

Posted mr-prince

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml基础一相关的知识,希望对你有一定的参考价值。

 

 

 

xml是一种标签语言,常用于存储处理数据。在Csharp中创建xml文档的方式如下:
首先引入命名空间

using System.Xml;

 


然后创建文档并给文档添加基本信息和节点信息:

XmlDocument doc = new XmlDocument();
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.AppendChild(dec);
XmlElement books = doc.CreateElement("Books");
doc.AppendChild(books);
XmlElement book1 = doc.CreateElement("Book");
books.AppendChild(book1);
XmlElement bookName1 = doc.CreateElement("BookName");
bookName1.InnerText = "水浒传";
book1.AppendChild(bookName1);

XmlElement author1 = doc.CreateElement("Author");
author1.InnerXml = "<authorName>吴承恩</authorName>";
book1.AppendChild(author1);

XmlElement price1 = doc.CreateElement("Price");
price1.InnerXml = "100¥";
book1.AppendChild(price1);

XmlElement des1 = doc.CreateElement("Des");
des1.InnerXml = "好看,顶!~!!!!";
book1.AppendChild(des1);

Console.WriteLine("保存成功");
doc.Save("Book.xml");
Console.ReadKey();

以上是关于xml基础一的主要内容,如果未能解决你的问题,请参考以下文章

从Asynctask ONPostExecute调用片段方法

为 Blogger 上的博客格式化代码片段 [关闭]

Android Fragments 基础知识:为啥?这在概念上是错误的吗?

SQL基础之XML

Java基础:封装

一步一图一代码,一定要让你真正彻底明白红黑树