-
使用XmlDocument创建XML文档及增加删除更新节点
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- using System.Xml;
- namespace XMLDOMDemo
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
-
-
- private void btnLoad_Click(object sender, EventArgs e)
- {
- XmlDocument xmlDoc = new XmlDocument();
- xmlDoc.Load("Books.xml");
- MessageBox.Show(xmlDoc.InnerXml);
- }
-
- private void btnCreate_Click(object sender, EventArgs e)
- {
- XmlDocument xmlDoc = new XmlDocument();
-
-
- XmlDeclaration dec = xmlDoc.CreateXmlDeclaration("1.0", "GB2312", null);
- xmlDoc.AppendChild(dec);
-
-
- XmlElement root = xmlDoc.CreateElement("Books");
- xmlDoc.AppendChild(root);
-
-
- XmlNode book = xmlDoc.CreateElement("Book");
-
- XmlElement title = xmlDoc.CreateElement("Title");
- title.InnerText = "SQL Server";
- book.AppendChild(title);
-
- XmlElement isbn = xmlDoc.CreateElement("ISBN");
- isbn.InnerText = "444444";
- book.AppendChild(isbn);
-
- XmlElement author = xmlDoc.CreateElement("Author");
- author.InnerText = "jia";
- book.AppendChild(author);
-
- XmlElement price = xmlDoc.CreateElement("Price");
- price.InnerText = "120";
- price.SetAttribute("Unit", "___FCKpd___0quot;);
-
- book.AppendChild(price);
- root.AppendChild(book);
-
- xmlDoc.Save("Books.xml");
- }
-
- private void btnInsert_Click(object sender, EventArgs e)
- {
- XmlDocument xmlDoc = new XmlDocument();
- xmlDoc.Load("Books.xml");
-
- XmlNode root = xmlDoc.SelectSingleNode("Books");
-
- XmlElement book = xmlDoc.CreateElement("Book");
-
- XmlElement title = xmlDoc.CreateElement("Title");
- title.InnerText = "XML";
- book.AppendChild(title);
-
- XmlElement isbn = xmlDoc.CreateElement("ISBN");
- isbn.InnerText = "333333";
- book.AppendChild(isbn);
-
- XmlElement author = xmlDoc.CreateElement("Author");
- author.InnerText = "snow";
- book.AppendChild(author);
-
- XmlElement price = xmlDoc.CreateElement("Price");
- price.InnerText = "120";
- price.SetAttribute("Unit", "___FCKpd___0quot;);
-
- book.AppendChild(price);
-
- root.AppendChild(book);
-
- xmlDoc.Save("Books.xml");
- MessageBox.Show("数据已写入!");
- }
-
- private void btnUpdate_Click(object sender, EventArgs e)
- {
- XmlDocument xmlDoc = new XmlDocument();
- xmlDoc.Load("Books.xml");
-
-
-
- XmlNodeList nodeList = xmlDoc.SelectSingleNode("Books//Book").ChildNodes;
-
-
- foreach (XmlNode xn in nodeList)
- {
-
- XmlElement xe = (XmlElement)xn;
- if (xe.Name == "Author")
- {
- xe.InnerText = "amandag";
- }
-
- if (xe.GetAttribute("Unit") == "___FCKpd___0quot;)
- {
- xe.SetAttribute("Unit", "¥");
- }
-
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- xmlDoc.Save("Books.xml");
- }
-
- private void btnDelete_Click(object sender, EventArgs e)
- {
- XmlDocument xmlDoc = new XmlDocument();
- xmlDoc.Load("Books.xml");
-
- XmlNodeList nodeList = xmlDoc.SelectSingleNode("Books//Book").ChildNodes;
-
-
- foreach (XmlNode xn in nodeList)
- {
-
- XmlElement xe = (XmlElement)xn;
- if (xe.Name == "Author")
- {
- xe.RemoveAll();
- }
-
- if (xe.GetAttribute("Unit") == "¥")
- {
- xe.RemoveAttribute("Unit");
- }
- }
- xmlDoc.Save("Books.xml");
- }
- }
- }
-
相关阅读:
DButils工具类能够用来获取数据库连接向数据库插入更新删除对象
Android 实现ActionBar定制
查看CentOs6.5/7的系统版本号
安装Was liberty之步骤
在centOS上安装VNC
SCP远程拷贝命令
Was liberty资料总结
罗杰斯:做你喜欢的工作,你会变成个有钱人
【Java/csv】一个CSV文件解析类(转载)
当你的才华还撑不起你的野心时,那你就应该静下心来学习。
-
原文地址:https://www.cnblogs.com/CCJVL/p/1958176.html
Copyright © 2020-2023
润新知