一、XML概念
XML:可扩展的标记语言,它用于存储数据。
注意:
(1)XML是严格区分大小写的;
(2)XML标签都是成对出现的;
(3)XML文档只能有一个根节点。
二、创建XML文件
using System;
using System.Xml;//引用命名空间
namespace XML
{
class Program
{
//通过代码来创建XML文档
static void Main(string[] args)
{
//创建XML文档对象
XmlDocument doc = new XmlDocument();
//创建第一行描述信息,并且添加到doc文档中
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.AppendChild(dec);
//创建根节点
XmlElement books = doc.CreateElement("Books");
//将根节点添加到文档中
doc.AppendChild(books);
//给根节点Books创建第一个子节点
XmlElement book1 = doc.CreateElement("Book");
//将book1添加到根节点
books.AppendChild(book1);
//给book1添加三个子节点
XmlElement name1 = doc.CreateElement("Name");
name1.InnerText = "水浒传";
book1.AppendChild(name1);
XmlElement price1 = doc.CreateElement("Price");
price1.InnerText = "10元";
book1.AppendChild(price1);
XmlElement des1 = doc.CreateElement("Des");
des1.InnerText = "105个男人和三个女人的故事";
book1.AppendChild(des1);
//给根节点Books创建第二个子节点
XmlElement book2 = doc.CreateElement("Book");
//将book2添加到根节点
books.AppendChild(book2);
//给book2添加三个子节点
XmlElement name2 = doc.CreateElement("Name");
name2.InnerText = "西游记";
book2.AppendChild(name2);
XmlElement price2 = doc.CreateElement("Price");
price2.InnerText = "15元";
book2.AppendChild(price2);
XmlElement des2 = doc.CreateElement("Des");
des2.InnerText = "唐僧师徒四人西天取经的故事";
book2.AppendChild(des2);
doc.Save("Books.xml");
Console.WriteLine("xml保存成功");
}
}
}
运行结果为:
附:
<?xml version="1.0" encoding="utf-8"?>
<Books>
<Book>
<Name>水浒传</Name>
<Price>10元</Price>
<Des>105个男人和三个女人的故事</Des>
</Book>
<Book>
<Name>西游记</Name>
<Price>15元</Price>
<Des>唐僧师徒四人西天取经的故事</Des>
</Book>
<Book>
<Name>三国演义</Name>
<Price>20元</Price>
<Des>东汉末年,魏蜀吴三国争霸的故事</Des>
</Book>
</Books>
三、创建带属性的XML文件
using System;
using System.Xml;
namespace 创建带属性的XML文档
{
class Program
{
static void Main(string[] args)
{
XmlDocument doc = new XmlDocument();
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.AppendChild(dec);
XmlElement order = doc.CreateElement("订单");
doc.AppendChild(order);
XmlElement customerName = doc.CreateElement("顾客姓名");
customerName.InnerText = "小明";
order.AppendChild(customerName);
XmlElement customerNumber = doc.CreateElement("顾客编号");
customerNumber.InnerText = "1000001";
order.AppendChild(customerNumber);
XmlElement items = doc.CreateElement("购买商品");
order.AppendChild(items);
XmlElement orderItem1 = doc.CreateElement("商品属性");
//给节点添加属性
orderItem1.SetAttribute("Name", "娃哈哈");
orderItem1.SetAttribute("Count", "6瓶");
items.AppendChild(orderItem1);
XmlElement orderItem2 = doc.CreateElement("商品属性");
//给节点添加属性
orderItem2.SetAttribute("Name", "卫龙辣条");
orderItem2.SetAttribute("Count", "3袋");
items.AppendChild(orderItem2);
XmlElement orderItem3 = doc.CreateElement("商品属性");
//给节点添加属性
orderItem3.SetAttribute("Name", "卫生纸");
orderItem3.SetAttribute("Count", "1提");
items.AppendChild(orderItem3);
doc.Save("订单.xml");
Console.WriteLine("xml保存成功");
}
}
}
运行结果为:
附:
<?xml version="1.0" encoding="utf-8"?>
<订单>
<顾客姓名>小明</顾客姓名>
<顾客编号>1000001</顾客编号>
<购买商品>
<商品属性 Name="娃哈哈" Count="6瓶" />
<商品属性 Name="卫龙辣条" Count="3袋" />
<商品属性 Name="卫生纸" Count="1提" />
</购买商品>
</订单>
四、追加XML
using System;
using System.Xml;
using System.IO;
namespace 追加XML
{
class Program
{
static void Main(string[] args)
{
//追加XML文档
XmlDocument doc = new XmlDocument();
XmlElement books;
if (File.Exists("Books.xml"))
{//如果文件存在
doc.Load("Books.xml");//加载xml
books = doc.DocumentElement;//获得文件的根节点
}
else
{//如果文件不存在
//创建第一行
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);
doc.AppendChild(dec);
//创建根节点
books = doc.CreateElement("Books");
doc.AppendChild(books);
}
//给根节点Books创建一个子节点
XmlElement book1 = doc.CreateElement("Book");
//将book1添加到根节点
books.AppendChild(book1);
//给book1添加三个子节点
XmlElement name1 = doc.CreateElement("Name");
name1.InnerText = "三国演义";
book1.AppendChild(name1);
XmlElement price1 = doc.CreateElement("Price");
price1.InnerText = "20元";
book1.AppendChild(price1);
XmlElement des1 = doc.CreateElement("Des");
des1.InnerText = "东汉末年,魏蜀吴三国争霸的故事";
book1.AppendChild(des1);
doc.Save("Books.xml");
Console.WriteLine("xml保存成功");
}
}
}
运行结果为:
五、读取XML
示例一:Books.xml
using System;
using System.Xml;
namespace 读取XML
{
class Program
{
static void Main(string[] args)
{
XmlDocument doc = new XmlDocument();
//加载要读取的XML
doc.Load("Books.xml");
//获得根节点
XmlElement books = doc.DocumentElement;
//获得子节点 返回节点的集合
XmlNodeList xnl = books.ChildNodes;
foreach(XmlNode item in xnl)
{
Console.WriteLine(item.InnerText);
}
}
}
}
运行结果为:
示例二:订单.xml
using System;
using System.Xml;
namespace 读取XML
{
class Program
{
static void Main(string[] args)
{
XmlDocument doc = new XmlDocument();
doc.Load("订单.xml");
XmlNodeList xnl = doc.SelectNodes("订单/购买商品/商品属性");
foreach(XmlNode node in xnl)
{
Console.WriteLine(node.Attributes["Name"].Value);
Console.WriteLine(node.Attributes["Count"].Value);
}
}
}
}
运行结果为:
六、删除XML的节点
using System;
using System.Xml;
namespace 删除XML的节点
{
class Program
{
static void Main(string[] args)
{
XmlDocument doc = new XmlDocument();
doc.Load("订单.xml");
//删除单个节点
XmlNodeList xnl = doc.SelectSingleNode("/订单/购买商品").ChildNodes;
xnl[1].ParentNode.RemoveChild(xnl[1]);
//删除所有节点
//XmlNode xn = doc.SelectSingleNode("/订单/购买商品");
//xn.RemoveAll();
doc.Save("订单.xml");
Console.WriteLine("删除成功");
}
}
}
运行结果为:
今天的文章C# XML分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/24105.html