1、创建XML文档对象XmlDocument doc=new XmlDocument()
2、创建XML根节点变量XmlElement xmlElement
3、判断XML文件是否已经存在
1)若存在
加载XML文档,doc.Load()
获得根节点,xmlElement=doc.DocumentElement
2)若不存在
创建第一行
XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);
将第一行添加到文档对象中
doc.AppendChild(dec);
创建根节点
xmlElement=doc.CreateElement("根节点名称");
将根节点添加到xml文档对象中
doc.AppendChild(xmlElement);
4、给根节点创建子节点
XmlElement xe=doc.CreateElement("子节点名称");
5、将子节点添加到根节点
xmlElement.AppendChild(xe);
6、给子节点创建一个子节点
XmlElement xee=doc.CreateElement("子节点名称");
7、给子节点赋值
xee.InnerText="";
8、将子节点添加到子节点
xe.AppendChild(xee);
doc.Save("");
思路:
添加子节点时,先创建一个子节点xn,然后添加到你想添加的位置,
需要获得该位置的父级节点XN,XN.AppendChild(xn)即可
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Xml; namespace xml创建_读写_修改 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
} private void button1_Click(object sender, EventArgs e) {
Create(System.Environment.CurrentDirectory + "\\test.xml");
} public void Create(string xmlPath)
{ //创建XML文档对象
XmlDocument doc = new XmlDocument();
//创建根节点
XmlElement books;
if(File.Exists(xmlPath)) {
//如果文件存在,加载XML
doc.Load(xmlPath);
//获得文件的根节点
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");
//将Book添加到根节点
books.AppendChild(book1); //给book1添加子节点
XmlElement name1 = doc.CreateElement("Nmae");
name1.InnerText = "c#开发入门";
book1.AppendChild(name1); XmlElement price1 = doc.CreateElement("Price");
price1.InnerText = "";
book1.AppendChild(price1);
doc.Save(xmlPath);
}
}
}