在C#中,可以使用XmlDocument类和XmlTextWriter类来操作XML文档,但是这些类的使用比较繁琐。为了简化XML操作,可以创建一个XmlHelper类,封装常用的XML操作方法。
以下是一个简单的XmlHelper类示例:
using System;
using System.Xml;
public class XmlHelper
{
private string _xmlFilePath;
public XmlHelper(string xmlFilePath)
{
_xmlFilePath = xmlFilePath;
}
public void AddElement(string parentElement, string elementName, string elementValue)
{
XmlDocument doc = new XmlDocument();
doc.Load(_xmlFilePath);
XmlNode parent = doc.SelectSingleNode(parentElement);
XmlElement element = doc.CreateElement(elementName);
element.InnerText = elementValue;
parent.AppendChild(element);
doc.Save(_xmlFilePath);
}
public string GetElementValue(string elementPath)
{
XmlDocument doc = new XmlDocument();
doc.Load(_xmlFilePath);
XmlNode node = doc.SelectSingleNode(elementPath);
if (node != null)
{
return node.InnerText;
}
return null;
}
}
通过使用XmlHelper类,可以简化对XML文档的操作。例如,可以使用AddElement方法向指定的父元素添加新元素,使用GetElementValue方法获取指定元素的值。这样可以提高代码的可读性和可维护性。