C#知识点:操作XML
2021-04-07 06:27
标签:amp write 分享 1.0 foreach void linq ldo src XML是什么就不用说了文本标记语言。 主要纪录如何对XML文件进行增删改查。 Xml的操作类都存在System.xml命名空间下面。 应用型的直接上代码 这个地方主要讲一下 XmlElement.InnerXml和XmlElement.InnerText的区别。代码演示 //给节点添加属性 很明显的看出来如果字符串是个标签,Interxml会当成标签给你添加,innterText会转义。 下面演示一下读取操作 C#知识点:操作XML 标签:amp write 分享 1.0 foreach void linq ldo src 原文地址:https://www.cnblogs.com/ztf20/p/9118030.htmlusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace XMLTest
{
class Program
{
static void Main(string[] args)
{
//1.创建XML文档对象
XmlDocument doc = new XmlDocument();
//创建头
XmlDeclaration xmlDeclaration = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
//添加节点
doc.AppendChild(xmlDeclaration);
XmlElement xmlElement = doc.CreateElement("Persons");
//给节点添加属性
xmlElement.SetAttribute("Name", "一小时小超人");
doc.AppendChild(xmlElement);
XmlElement xmlElement1 = doc.CreateElement("Person");
//给节点添加文字
xmlElement1.InnerXml = "小超人";
xmlElement.AppendChild(xmlElement1);
doc.Save("Test.xml");
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace XMLTest
{
class Program
{
static void Main(string[] args)
{
//1.创建XML文档对象
XmlDocument doc = new XmlDocument();
//创建头
XmlDeclaration xmlDeclaration = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
//添加节点
doc.AppendChild(xmlDeclaration);
XmlElement xmlElement = doc.CreateElement("Persons");
//给节点添加属性
xmlElement.SetAttribute("Name", "一小时小超人");
doc.AppendChild(xmlElement);
XmlElement xmlElement1 = doc.CreateElement("Person");
//给节点添加文字
xmlElement1.InnerXml = "小超人演示>";
xmlElement.AppendChild(xmlElement1);
XmlElement xmlElement2 = doc.CreateElement("Person");
//给节点添加文字
xmlElement2.InnerText = "小超人演示>";
xmlElement2.SetAttribute("name", "一小时小超人"); xmlElement.AppendChild(xmlElement2);
doc.Save("Test.xml");
}
}
}
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace XMLTest
{
class Program
{
static void Main(string[] args)
{
//1.创建XML文档对象
XmlDocument doc = new XmlDocument();
if (File.Exists("Test.xml"))
{
//通过文件名加载Xml,也可以通过流之类的,其他重载方法,看文档。
doc.Load("Test.xml");
//获取根节点
XmlElement xmlElement = doc.DocumentElement;
//获取根节点下面的子节点集合
XmlNodeList nodeList = xmlElement.ChildNodes;
//循环取每一个子节点
foreach (XmlNode item in nodeList)
{
Console.WriteLine(item.Name);
//获取节点属性
//string attributesValue=item.Attributes["属性名称"].Value;
}
Console.ReadKey();
}
}
}
}
上一篇:Wpf 导出CSV文件
下一篇:C#之数据类型学习