博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linq To Xml操作XML增删改查
阅读量:6469 次
发布时间:2019-06-23

本文共 6835 字,大约阅读时间需要 22 分钟。

对XML文件的操作在平时项目中经常要运用到,比如用于存放一些配置相关的内容;本文将简单运用Linq TO Xml对XML进行操作,主要讲解对XML的创建、加载、增加、查询、修改以及删除;重点在于类、类;本实例是在控制台程序运行,所以对加载的XML文件路径要注意,若XML文件不是代码自运创建时要设置其“复制到输出目录”-始终复制

1:首先看一下实例要加载的XML文件格式:

1
踏浪帅
2
wujunyang
3
cnblogs

 

2:[加载XML]加载XML文件的内容,假如XML文件不存在则创建一个CreateXmlFile(XmlFile):

string XmlFile=Directory.GetCurrentDirectory()+"//XmlFile//UserXmlFiles.xml";            if (!File.Exists(XmlFile))            {                CreateXmlFile(XmlFile);            }            XDocument xdocument = XDocument.Load(XmlFile);    //asp.net  XDocument.Load(Server.MapPath("//XmlFile//UserXmlFile.xml"));            Console.WriteLine("--------------开始遍历XML节点内容--------------");            var Users = from userInfo in xdocument.Element("Root").Elements() select new { UserID = userInfo.Element("UserID").Value, UserName = userInfo.Element("UserName").Value };            foreach (var item in Users)            {                Console.WriteLine(string.Format("用户ID为:{0};名字为:{1}", item.UserID, item.UserName));            }

运行结果:

3:[创建XML]上面提到假如XML文件不存在则创建一个,并增加我们想要的节点内容

///         /// 生成XML文件        ///         /// XML保存的路径        private static void CreateXmlFile(string XmlFile)        {            XDocument xdoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), CreateXElement());            xdoc.Save(XmlFile);        }        private static XElement CreateXElement()        {            XElement root = new XElement("Root",new XElement("User",new XElement("UserID","1"),new XElement("UserName","踏浪帅")),                new XElement("User", new XElement("UserID", "2"), new XElement("UserName", "wujunyang")),                new XElement("User", new XElement("UserID", "3"), new XElement("UserName", "cnblogs")));            return root;        }

4:[带条件遍历]带条件进行查询出想要的结果,这边我们查找UserID的值大于1

Console.WriteLine("--------------开始带条件遍历XML节点内容--------------");            var UserForWhere = from userInfo in xdocument.Element("Root").Elements() where Convert.ToInt32(userInfo.Element("UserID").Value) > 1 select new { UserID = userInfo.Element("UserID").Value, UserName = userInfo.Element("UserName").Value };            foreach (var item in UserForWhere)            {                Console.WriteLine(string.Format("用户ID为:{0};名字为:{1}", item.UserID, item.UserName));            }

运行结果:

5:[插入]往XML插入我们想要的值,此处我们再增加一个

Console.WriteLine("--------------往XML文件里再插入一个节点的内容--------------");            XElement InsertRoot = new XElement("User", new XElement("UserID", "4"), new XElement("UserName", "厦门"));            xdocument.Element("Root").Add(InsertRoot);            xdocument.Save(XmlFile);            Console.WriteLine("插入节点成功");

运行结果:

XML文件内容变成:

1
踏浪帅
2
wujunyang
3
cnblogs
4
厦门

6:[更新]对节点下某个值进行更新,通过条件进行查找出来再更新

Console.WriteLine("--------------更新XML文件里节点的内容--------------");            XElement UserUpdate = (from userInfo in xdocument.Element("Root").Elements() where Convert.ToInt32(userInfo.Element("UserID").Value) == 3 select userInfo).SingleOrDefault();            if (UserUpdate != null)            {                UserUpdate.Element("UserName").Value = "www.cnblogs.com/wujy";                xdocument.Save(XmlFile);            }            Console.WriteLine("更新节点成功");

运行结果:

7:[删除]针对某个条件对XML中的某一项进行删除

Console.WriteLine("--------------删除XML文件里节点的内容--------------");            XElement UserDelete = (from userInfo in xdocument.Element("Root").Elements() where Convert.ToInt32(userInfo.Element("UserID").Value) == 2 select userInfo).SingleOrDefault();            if (UserDelete != null)            {                UserDelete.Remove();                xdocument.Save(XmlFile);            }            Console.WriteLine("删除节点成功");

运行结果:

 

8:除的上面提到值还有一种是属性如下面:

最近碰到一字符串的XML,接着我们就实现把它转化为一个实体:

public class User     {        public string UserName { get; set; }        public string PassWord { get; set; }        public string Age { get; set; }    }
private static void CreateXmlFile(string XmlFile)        {            XDocument xdoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), CreateXElement());            xdoc.Save(XmlFile);        }        private static XElement CreateXElement()        {            XElement root = new XElement("Root", new XElement("User", new XAttribute("UserName", "wujy"), new XAttribute("PassWord", "76543"), new XAttribute("Age", "30")),                new XElement("User", new XAttribute("UserName", "cnblogs"), new XAttribute("PassWord", "23456"), new XAttribute("Age", "26")),                new XElement("User", new XAttribute("UserName", "踏浪帅"), new XAttribute("PassWord", "4567"), new XAttribute("Age", "34")));            return root;        }        public static List
DindDB() { List
list = new List
(); XDocument xdoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), CreateXElement()); string XmlStr = xdoc.ToString(); byte[] ARRAY=Encoding.UTF8.GetBytes(cleanStringEmpty(XmlStr)); MemoryStream stream=new MemoryStream(ARRAY); StreamReader READER=new StreamReader(stream); XDocument xmdo = XDocument.Load(READER); var ResultUsers = from userInfo in xmdo.Elements("Root").Elements("User") select new { UserName = userInfo.Attribute("UserName").Value, PassWord = userInfo.Attribute("PassWord").Value, Age = userInfo.Attribute("Age").Value }; foreach (var item in ResultUsers) { User model = new User(); model.UserName = item.UserName; model.PassWord = item.PassWord; model.Age = item.Age; list.Add(model); } return list; } private static string cleanStringEmpty(string str) { if (!string.IsNullOrEmpty(str)) { StringBuilder sb = new StringBuilder(); string[] newStr = str.ToString().Split(new string[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries); for (int i = 0; i < newStr.Length; i++) { sb.Append(newStr[i].Trim()); } return sb.ToString(); } else { return null; } }

 

 

 如果,您认为阅读这篇博客让您有些收获,不妨点击一下右下角的【推荐】按钮,若有不足欢迎指正。  因为,我的写作热情也离不开您的肯定支持。

 
感谢您的阅读()

你可能感兴趣的文章
烦恼的操作系统
查看>>
我的友情链接
查看>>
浅谈产品经理和项目经理
查看>>
ERP成功上线前不可缺少的一步
查看>>
网络回溯分析技术八大应用之责任界定 网络故障排查
查看>>
ElasticSearch单节点模式的搭建
查看>>
我的友情链接
查看>>
常用UI控件之UIImageView
查看>>
restful架构下springmvc controller中delete、put方法传参问题
查看>>
script&gt
查看>>
我的友情链接
查看>>
AFNetworking 3.0.4更新使用
查看>>
计算机入门基础学习
查看>>
open***脚本自动部署
查看>>
【示例代码】1KB JavaScript代码编写的3D蜜蜂
查看>>
2016年3月28日作业
查看>>
在VMware上安装Red Hat Linux AS5
查看>>
信息安全测评认证的重要性
查看>>
Tomcat解决中文乱码
查看>>
nginx+tomcat 跑jsp
查看>>