• C#中操作XML文件(读写改删全接触) 跟其它语言操作XML差不多一样


    1. XmlDocument xmlDoc = new XmlDocument();   
    2. xmlDoc.Load("bookstore.xml");   
    3. //xmlDoc.LoadXml("<!--l version=\"1.0\" encoding=\"gb2312\--><BOOKSTORE></BOOKSTORE>");   
    4. XmlNode root = xmlDoc.SelectSingleNode("bookstore");//查找<BOOKSTORE></BOOKSTORE>   
    5. XmlElement xe1 = xmlDoc.CreateElement("book");//创建一个<BOOK></BOOK>节点   
    6. xe1.SetAttribute("genre""李赞红");//设置该节点genre属性   
    7. xe1.SetAttribute("ISBN""2-3631-4");//设置该节点ISBN属性   
    8.   
    9. XmlElement xesub1 = xmlDoc.CreateElement("title");   
    10. xesub1.InnerText = "CS从入门到精通";//设置文本节点   
    11. xe1.AppendChild(xesub1);//添加到<BOOK></BOOK>节点中   
    12. XmlElement xesub2 = xmlDoc.CreateElement("author");   
    13. xesub2.InnerText = "候捷";   
    14. xe1.AppendChild(xesub2);   
    15.   
    16. XmlElement xesub3 = xmlDoc.CreateElement("price");   
    17. xesub3.InnerText = "58.3";   
    18. xe1.AppendChild(xesub3);   
    19.   
    20. root.AppendChild(xe1);//添加到<BOOKSTORE></BOOKSTORE>节点中   
    21. xmlDoc.Save("bookstore.xml");  

    已知有一个XML文件(bookstore.xml)如下:
    <?xml version="1.0" encoding="gb2312"?>
    <bookstore>
      <book genre="fantasy" ISBN="2-3631-4">
        <title>Oberon's Legacy</title>
        <author>Corets, Eva</author>
        <price>5.95</price>
      </book>
    </bookstore>

    1、往<bookstore>节点中插入一个<book>节点:
     

    1. XmlDocument xmlDoc = new XmlDocument();   
    2. xmlDoc.Load("bookstore.xml");   
    3. //xmlDoc.LoadXml("<!--l version=\"1.0\" encoding=\"gb2312\--><BOOKSTORE></BOOKSTORE>");   
    4. XmlNode root = xmlDoc.SelectSingleNode("bookstore");//查找<BOOKSTORE></BOOKSTORE>   
    5. XmlElement xe1 = xmlDoc.CreateElement("book");//创建一个<BOOK></BOOK>节点   
    6. xe1.SetAttribute("genre""李赞红");//设置该节点genre属性   
    7. xe1.SetAttribute("ISBN""2-3631-4");//设置该节点ISBN属性   
    8.   
    9. XmlElement xesub1 = xmlDoc.CreateElement("title");   
    10. xesub1.InnerText = "CS从入门到精通";//设置文本节点   
    11. xe1.AppendChild(xesub1);//添加到<BOOK></BOOK>节点中   
    12. XmlElement xesub2 = xmlDoc.CreateElement("author");   
    13. xesub2.InnerText = "候捷";   
    14. xe1.AppendChild(xesub2);   
    15. XmlElement xesub3 = xmlDoc.CreateElement("price");   
    16. xesub3.InnerText = "58.3";   
    17. xe1.AppendChild(xesub3);   
    18.   
    19. root.AppendChild(xe1);//添加到<BOOKSTORE></BOOKSTORE>节点中   
    20. xmlDoc.Save("bookstore.xml");  


    //===============================================
    结果为:
    <?xml version="1.0" encoding="gb2312"?>
    <bookstore>
      <book genre="fantasy" ISBN="2-3631-4">
        <title>Oberon's Legacy</title>
        <author>Corets, Eva</author>
        <price>5.95</price>
      </book>
      <book genre="李赞红" ISBN="2-3631-4">
        <title>CS从入门到精通</title>
        <author>候捷</author>
        <price>58.3</price>
      </book>
    </bookstore>

    2、修改节点:将genre属性值为“李赞红“的节点的genre值改为“update李赞红”,将该节点的子节点<author>的文本修改为“亚胜”。
     

    1. XmlNodeList nodeList = xmlDoc.SelectSingleNode("bookstore").ChildNodes;//获取bookstore节点的所有子节点   
    2. foreach (XmlNode xn in nodeList)//遍历所有子节点   
    3. {   
    4.     XmlElement xe = (XmlElement)xn;//将子节点类型转换为XmlElement类型   
    5.     if (xe.GetAttribute("genre") == "李赞红")//如果genre属性值为“李赞红”   
    6.     {   
    7.         xe.SetAttribute("genre""update李赞红");//则修改该属性为“update李赞红”   
    8.   
    9.         XmlNodeList nls = xe.ChildNodes;//继续获取xe子节点的所有子节点   
    10.         foreach (XmlNode xn1 in nls)//遍历   
    11.         {   
    12.             XmlElement xe2 = (XmlElement)xn1;//转换类型   
    13.             if (xe2.Name == "author")//如果找到   
    14.             {   
    15.                 xe2.InnerText = "亚胜";//则修改   
    16.                 break;//找到退出来就可以了   
    17.             }   
    18.         }   
    19.         break;   
    20.     }   
    21. }   
    22.   
    23. xmlDoc.Save("bookstore.xml");//保存。  


    //==================================================
    最后结果为:
    <?xml version="1.0" encoding="gb2312"?>
    <bookstore>
      <book genre="fantasy" ISBN="2-3631-4">
        <title>Oberon's Legacy</title>
        <author>Corets, Eva</author>
        <price>5.95</price>
      </book>
      <book genre="update李赞红" ISBN="2-3631-4">
        <title>CS从入门到精通</title>
        <author>亚胜</author>
        <price>58.3</price>
      </book>
    </bookstore>

    3、删除 <book genre="fantasy" ISBN="2-3631-4">节点的genre属性,删除 <book genre="update李赞红" ISBN="2-3631-4">节点。
     

    1. XmlNodeList xnl = xmlDoc.SelectSingleNode("bookstore").ChildNodes;   
    2.   
    3. foreach (XmlNode xn in xnl)   
    4. {   
    5.     XmlElement xe = (XmlElement)xn;   
    6.     if (xe.GetAttribute("genre") == "fantasy")   
    7.     {   
    8.         xe.RemoveAttribute("genre");//删除genre属性   
    9.     }   
    10.     else if (xe.GetAttribute("genre") == "update李赞红")   
    11.     {   
    12.         xe.RemoveAll();//删除该节点的全部内容   
    13.     }   
    14. }   
    15. xmlDoc.Save("bookstore.xml");  


    //===========================================
    最后结果为:
    <?xml version="1.0" encoding="gb2312"?>
    <bookstore>
      <book ISBN="2-3631-4">
        <title>Oberon's Legacy</title>
        <author>Corets, Eva</author>
        <price>5.95</price>
      </book>
      <book>
      </book>
    </bookstore>

    4、显示所有数据。
     

    1. XmlNode xn = xmlDoc.SelectSingleNode("bookstore");   
    2.   
    3. XmlNodeList xnl = xn.ChildNodes;   
    4.   
    5. foreach (XmlNode xnf in xnl)   
    6. {   
    7.     XmlElement xe = (XmlElement)xnf;   
    8.     Console.WriteLine(xe.GetAttribute("genre"));//显示属性值   
    9.     Console.WriteLine(xe.GetAttribute("ISBN"));   
    10.   
    11.     XmlNodeList xnf1 = xe.ChildNodes;   
    12.     foreach (XmlNode xn2 in xnf1)   
    13.     {   
    14.         Console.WriteLine(xn2.InnerText);//显示子节点点文本   
    15.     }   
    16. }  
  • 相关阅读:
    样式问题
    布局
    通用模板实现可变参数函数
    使用单例模式实习string类
    动态生成一维数组和二维数组
    自定义的类传数据到主窗口控件上的方法
    使用TableView
    G480折腾上了黑苹果,完美了,哈哈
    error C2383: 此符号中不允许有默认参数
    动态链接库的隐式动态链接和显示动态链接
  • 原文地址:https://www.cnblogs.com/liufei88866/p/1762658.html
Copyright © 2020-2023  润新知