真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#XML操作類分享

本文實例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內容如下

網(wǎng)站建設公司,為您提供網(wǎng)站建設,網(wǎng)站制作,網(wǎng)頁設計及定制網(wǎng)站建設服務,專注于成都企業(yè)網(wǎng)站建設,高端網(wǎng)頁制作,對OPP膠袋等多個行業(yè)擁有豐富的網(wǎng)站建設經(jīng)驗的網(wǎng)站建設公司。專業(yè)網(wǎng)站設計,網(wǎng)站優(yōu)化推廣哪家好,專業(yè)網(wǎng)站推廣優(yōu)化,H5建站,響應式網(wǎng)站。

XmlHelper

using System.Xml;
using System.Data;

namespace DotNet.Utilities
{
 /// 
 /// Xml的操作公共類
 ///  
 public class XmlHelper
 {
  #region 字段定義
  /// 
  /// XML文件的物理路徑
  /// 
  private string _filePath = string.Empty;
  /// 
  /// Xml文檔
  /// 
  private XmlDocument _xml;
  /// 
  /// XML的根節(jié)點
  /// 
  private XmlElement _element;
  #endregion

  #region 構造方法
  /// 
  /// 實例化XmlHelper對象
  /// 
  /// Xml文件的相對路徑
  public XmlHelper(string xmlFilePath)
  {
   //獲取XML文件的絕對路徑
   _filePath = SysHelper.GetPath(xmlFilePath);
  }
  #endregion

  #region 創(chuàng)建XML的根節(jié)點
  /// 
  /// 創(chuàng)建XML的根節(jié)點
  /// 
  private void CreateXMLElement()
  {

   //創(chuàng)建一個XML對象
   _xml = new XmlDocument();

   if (DirFile.IsExistFile(_filePath))
   {
    //加載XML文件
    _xml.Load(this._filePath);
   }

   //為XML的根節(jié)點賦值
   _element = _xml.DocumentElement;
  }
  #endregion

  #region 獲取指定XPath表達式的節(jié)點對象
  /// 
  /// 獲取指定XPath表達式的節(jié)點對象
  ///   
  /// XPath表達式,
  /// 范例1: @"Skill/First/SkillItem", 等效于 @"http://Skill/First/SkillItem"
  /// 范例2: @"Table[USERNAME='a']" , []表示篩選,USERNAME是Table下的一個子節(jié)點.
  /// 范例3: @"ApplyPost/Item[@itemName='崗位編號']",@itemName是Item節(jié)點的屬性.
  /// 
  public XmlNode GetNode(string xPath)
  {
   //創(chuàng)建XML的根節(jié)點
   CreateXMLElement();

   //返回XPath節(jié)點
   return _element.SelectSingleNode(xPath);
  }
  #endregion

  #region 獲取指定XPath表達式節(jié)點的值
  /// 
  /// 獲取指定XPath表達式節(jié)點的值
  /// 
  /// XPath表達式,
  /// 范例1: @"Skill/First/SkillItem", 等效于 @"http://Skill/First/SkillItem"
  /// 范例2: @"Table[USERNAME='a']" , []表示篩選,USERNAME是Table下的一個子節(jié)點.
  /// 范例3: @"ApplyPost/Item[@itemName='崗位編號']",@itemName是Item節(jié)點的屬性.
  /// 
  public string GetValue(string xPath)
  {
   //創(chuàng)建XML的根節(jié)點
   CreateXMLElement();

   //返回XPath節(jié)點的值
   return _element.SelectSingleNode(xPath).InnerText;
  }
  #endregion

  #region 獲取指定XPath表達式節(jié)點的屬性值
  /// 
  /// 獲取指定XPath表達式節(jié)點的屬性值
  /// 
  /// XPath表達式,
  /// 范例1: @"Skill/First/SkillItem", 等效于 @"http://Skill/First/SkillItem"
  /// 范例2: @"Table[USERNAME='a']" , []表示篩選,USERNAME是Table下的一個子節(jié)點.
  /// 范例3: @"ApplyPost/Item[@itemName='崗位編號']",@itemName是Item節(jié)點的屬性.
  /// 
  /// 屬性名
  public string GetAttributeValue(string xPath, string attributeName)
  {
   //創(chuàng)建XML的根節(jié)點
   CreateXMLElement();

   //返回XPath節(jié)點的屬性值
   return _element.SelectSingleNode(xPath).Attributes[attributeName].Value;
  }
  #endregion

  #region 新增節(jié)點
  /// 
  /// 1. 功能:新增節(jié)點。
  /// 2. 使用條件:將任意節(jié)點插入到當前Xml文件中。
  ///   
  /// 要插入的Xml節(jié)點
  public void AppendNode(XmlNode xmlNode)
  {
   //創(chuàng)建XML的根節(jié)點
   CreateXMLElement();

   //導入節(jié)點
   XmlNode node = _xml.ImportNode(xmlNode, true);

   //將節(jié)點插入到根節(jié)點下
   _element.AppendChild(node);
  }

  /// 
  /// 1. 功能:新增節(jié)點。
  /// 2. 使用條件:將DataSet中的第一條記錄插入Xml文件中。
  ///   
  /// DataSet的實例,該DataSet中應該只有一條記錄
  public void AppendNode(DataSet ds)
  {
   //創(chuàng)建XmlDataDocument對象
   XmlDataDocument xmlDataDocument = new XmlDataDocument(ds);

   //導入節(jié)點
   XmlNode node = xmlDataDocument.DocumentElement.FirstChild;

   //將節(jié)點插入到根節(jié)點下
   AppendNode(node);
  }
  #endregion

  #region 刪除節(jié)點
  /// 
  /// 刪除指定XPath表達式的節(jié)點
  ///   
  /// XPath表達式,
  /// 范例1: @"Skill/First/SkillItem", 等效于 @"http://Skill/First/SkillItem"
  /// 范例2: @"Table[USERNAME='a']" , []表示篩選,USERNAME是Table下的一個子節(jié)點.
  /// 范例3: @"ApplyPost/Item[@itemName='崗位編號']",@itemName是Item節(jié)點的屬性.
  /// 
  public void RemoveNode(string xPath)
  {
   //創(chuàng)建XML的根節(jié)點
   CreateXMLElement();

   //獲取要刪除的節(jié)點
   XmlNode node = _xml.SelectSingleNode(xPath);

   //刪除節(jié)點
   _element.RemoveChild(node);
  }
  #endregion //刪除節(jié)點

  #region 保存XML文件
  /// 
  /// 保存XML文件
  ///   
  public void Save()
  {
   //創(chuàng)建XML的根節(jié)點
   CreateXMLElement();

   //保存XML文件
   _xml.Save(this._filePath);
  }
  #endregion //保存XML文件

  #region 靜態(tài)方法

  #region 創(chuàng)建根節(jié)點對象
  /// 
  /// 創(chuàng)建根節(jié)點對象
  /// 
  /// Xml文件的相對路徑  
  private static XmlElement CreateRootElement(string xmlFilePath)
  {
   //定義變量,表示XML文件的絕對路徑
   string filePath = "";

   //獲取XML文件的絕對路徑
   filePath = SysHelper.GetPath(xmlFilePath);

   //創(chuàng)建XmlDocument對象
   XmlDocument xmlDocument = new XmlDocument();
   //加載XML文件
   xmlDocument.Load(filePath);

   //返回根節(jié)點
   return xmlDocument.DocumentElement;
  }
  #endregion

  #region 獲取指定XPath表達式節(jié)點的值
  /// 
  /// 獲取指定XPath表達式節(jié)點的值
  /// 
  /// Xml文件的相對路徑
  /// XPath表達式,
  /// 范例1: @"Skill/First/SkillItem", 等效于 @"http://Skill/First/SkillItem"
  /// 范例2: @"Table[USERNAME='a']" , []表示篩選,USERNAME是Table下的一個子節(jié)點.
  /// 范例3: @"ApplyPost/Item[@itemName='崗位編號']",@itemName是Item節(jié)點的屬性.
  /// 
  public static string GetValue(string xmlFilePath, string xPath)
  {
   //創(chuàng)建根對象
   XmlElement rootElement = CreateRootElement(xmlFilePath);

   //返回XPath節(jié)點的值
   return rootElement.SelectSingleNode(xPath).InnerText;
  }
  #endregion

  #region 獲取指定XPath表達式節(jié)點的屬性值
  /// 
  /// 獲取指定XPath表達式節(jié)點的屬性值
  /// 
  /// Xml文件的相對路徑
  /// XPath表達式,
  /// 范例1: @"Skill/First/SkillItem", 等效于 @"http://Skill/First/SkillItem"
  /// 范例2: @"Table[USERNAME='a']" , []表示篩選,USERNAME是Table下的一個子節(jié)點.
  /// 范例3: @"ApplyPost/Item[@itemName='崗位編號']",@itemName是Item節(jié)點的屬性.
  /// 
  /// 屬性名
  public static string GetAttributeValue(string xmlFilePath, string xPath, string attributeName)
  {
   //創(chuàng)建根對象
   XmlElement rootElement = CreateRootElement(xmlFilePath);

   //返回XPath節(jié)點的屬性值
   return rootElement.SelectSingleNode(xPath).Attributes[attributeName].Value;
  }
  #endregion

  #endregion

  public static void SetValue(string xmlFilePath, string xPath, string newtext)
  {
   //string path = SysHelper.GetPath(xmlFilePath);
   //var queryXML = from xmlLog in xelem.Descendants("msg_log")
   //    //所有名字為Bin的記錄
   //    where xmlLog.Element("user").Value == "Bin"
   //    select xmlLog;

   //foreach (XElement el in queryXML)
   //{
   // el.Element("user").Value = "LiuBin";//開始修改
   //}
   //xelem.Save(path);
  }
 }
}

XmlProcess

using System;
using System.Data;
using System.IO;
using System.Xml;

namespace DotNet.Utilities
{
 public class XMLProcess
 {
  #region 構造函數(shù)
  public XMLProcess()
  { }

  public XMLProcess(string strPath)
  {
   this._XMLPath = strPath;
  }
  #endregion

  #region 公有屬性
  private string _XMLPath;
  public string XMLPath
  {
   get { return this._XMLPath; }
  }
  #endregion

  #region 私有方法
  /// 
  /// 導入XML文件
  /// 
  /// XML文件路徑
  private XmlDocument XMLLoad()
  {
   string XMLFile = XMLPath;
   XmlDocument xmldoc = new XmlDocument();
   try
   {
    string filename = AppDomain.CurrentDomain.BaseDirectory.ToString() + XMLFile;
    if (File.Exists(filename)) xmldoc.Load(filename);
   }
   catch (Exception e)
   { }
   return xmldoc;
  }

  /// 
  /// 導入XML文件
  /// 
  /// XML文件路徑
  private static XmlDocument XMLLoad(string strPath)
  {
   XmlDocument xmldoc = new XmlDocument();
   try
   {
    string filename = AppDomain.CurrentDomain.BaseDirectory.ToString() + strPath;
    if (File.Exists(filename)) xmldoc.Load(filename);
   }
   catch (Exception e)
   { }
   return xmldoc;
  }

  /// 
  /// 返回完整路徑
  /// 
  /// Xml的路徑
  private static string GetXmlFullPath(string strPath)
  {
   if (strPath.IndexOf(":") > 0)
   {
    return strPath;
   }
   else
   {
    return System.Web.HttpContext.Current.Server.MapPath(strPath);
   }
  }
  #endregion

  #region 讀取數(shù)據(jù)
  /// 
  /// 讀取指定節(jié)點的數(shù)據(jù)
  /// 
  /// 節(jié)點
  /// 使用示列:
  /// XMLProsess.Read("/Node", "")
  /// XMLProsess.Read("/Node/Element[@Attribute='Name']")
  public string Read(string node)
  {
   string value = "";
   try
   {
    XmlDocument doc = XMLLoad();
    XmlNode xn = doc.SelectSingleNode(node);
    value = xn.InnerText;
   }
   catch { }
   return value;
  }

  /// 
  /// 讀取指定路徑和節(jié)點的串聯(lián)值
  /// 
  /// 路徑
  /// 節(jié)點
  /// 屬性名,非空時返回該屬性值,否則返回串聯(lián)值
  /// 使用示列:
  /// XMLProsess.Read(path, "/Node", "")
  /// XMLProsess.Read(path, "/Node/Element[@Attribute='Name']")
  public static string Read(string path, string node)
  {
   string value = "";
   try
   {
    XmlDocument doc = XMLLoad(path);
    XmlNode xn = doc.SelectSingleNode(node);
    value = xn.InnerText;
   }
   catch { }
   return value;
  }

  /// 
  /// 讀取指定路徑和節(jié)點的屬性值
  /// 
  /// 路徑
  /// 節(jié)點
  /// 屬性名,非空時返回該屬性值,否則返回串聯(lián)值
  /// 使用示列:
  /// XMLProsess.Read(path, "/Node", "")
  /// XMLProsess.Read(path, "/Node/Element[@Attribute='Name']", "Attribute")
  public static string Read(string path, string node, string attribute)
  {
   string value = "";
   try
   {
    XmlDocument doc = XMLLoad(path);
    XmlNode xn = doc.SelectSingleNode(node);
    value = (attribute.Equals("") ? xn.InnerText : xn.Attributes[attribute].Value);
   }
   catch { }
   return value;
  }

  /// 
  /// 獲取某一節(jié)點的所有孩子節(jié)點的值
  /// 
  /// 要查詢的節(jié)點
  public string[] ReadAllChildallValue(string node)
  {
   int i = 0;
   string[] str = { };
   XmlDocument doc = XMLLoad();
   XmlNode xn = doc.SelectSingleNode(node);
   XmlNodeList nodelist = xn.ChildNodes; //得到該節(jié)點的子節(jié)點
   if (nodelist.Count > 0)
   {
    str = new string[nodelist.Count];
    foreach (XmlElement el in nodelist)//讀元素值
    {
     str[i] = el.Value;
     i++;
    }
   }
   return str;
  }

  /// 
  /// 獲取某一節(jié)點的所有孩子節(jié)點的值
  /// 
  /// 要查詢的節(jié)點
  public XmlNodeList ReadAllChild(string node)
  {
   XmlDocument doc = XMLLoad();
   XmlNode xn = doc.SelectSingleNode(node);
   XmlNodeList nodelist = xn.ChildNodes; //得到該節(jié)點的子節(jié)點
   return nodelist;
  }

  ///  
  /// 讀取XML返回經(jīng)排序或篩選后的DataView
  /// 
  /// 篩選條件,如:"name='kgdiwss'"
  ///  排序條件,如:"Id desc"
  public DataView GetDataViewByXml(string strWhere, string strSort)
  {
   try
   {
    string XMLFile = this.XMLPath;
    string filename = AppDomain.CurrentDomain.BaseDirectory.ToString() + XMLFile;
    DataSet ds = new DataSet();
    ds.ReadXml(filename);
    DataView dv = new DataView(ds.Tables[0]); //創(chuàng)建DataView來完成排序或篩選操作 
    if (strSort != null)
    {
     dv.Sort = strSort; //對DataView中的記錄進行排序
    }
    if (strWhere != null)
    {
     dv.RowFilter = strWhere; //對DataView中的記錄進行篩選,找到我們想要的記錄
    }
    return dv;
   }
   catch (Exception)
   {
    return null;
   }
  }

  /// 
  /// 讀取XML返回DataSet
  /// 
  /// XML文件相對路徑
  public DataSet GetDataSetByXml(string strXmlPath)
  {
   try
   {
    DataSet ds = new DataSet();
    ds.ReadXml(GetXmlFullPath(strXmlPath));
    if (ds.Tables.Count > 0)
    {
     return ds;
    }
    return null;
   }
   catch (Exception)
   {
    return null;
   }
  }
  #endregion

  #region 插入數(shù)據(jù)
  /// 
  /// 插入數(shù)據(jù)
  /// 
  /// 路徑
  /// 節(jié)點
  /// 元素名,非空時插入新元素,否則在該元素中插入屬性
  /// 屬性名,非空時插入該元素屬性值,否則插入元素值
  /// 值
  /// 使用示列:
  /// XMLProsess.Insert(path, "/Node", "Element", "", "Value")
  /// XMLProsess.Insert(path, "/Node", "Element", "Attribute", "Value")
  /// XMLProsess.Insert(path, "/Node", "", "Attribute", "Value")
  public static void Insert(string path, string node, string element, string attribute, string value)
  {
   try
   {
    XmlDocument doc = new XmlDocument();
    doc.Load(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
    XmlNode xn = doc.SelectSingleNode(node);
    if (element.Equals(""))
    {
     if (!attribute.Equals(""))
     {
      XmlElement xe = (XmlElement)xn;
      xe.SetAttribute(attribute, value);
     }
    }
    else
    {
     XmlElement xe = doc.CreateElement(element);
     if (attribute.Equals(""))
      xe.InnerText = value;
     else
      xe.SetAttribute(attribute, value);
     xn.AppendChild(xe);
    }
    doc.Save(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
   }
   catch { }
  }

  /// 
  /// 插入數(shù)據(jù)
  /// 
  /// 路徑
  /// 節(jié)點
  /// 元素名,非空時插入新元素,否則在該元素中插入屬性
  /// 由XML屬性名和值組成的二維數(shù)組
  public static void Insert(string path, string node, string element, string[][] strList)
  {
   try
   {
    XmlDocument doc = new XmlDocument();
    doc.Load(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
    XmlNode xn = doc.SelectSingleNode(node);
    XmlElement xe = doc.CreateElement(element);
    string strAttribute = "";
    string strValue = "";
    for (int i = 0; i < strList.Length; i++)
    {
     for (int j = 0; j < strList[i].Length; j++)
     {
      if (j == 0)
       strAttribute = strList[i][j];
      else
       strValue = strList[i][j];
     }
     if (strAttribute.Equals(""))
      xe.InnerText = strValue;
     else
      xe.SetAttribute(strAttribute, strValue);
    }
    xn.AppendChild(xe);
    doc.Save(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
   }
   catch { }
  }

  /// 
  /// 插入一行數(shù)據(jù)
  /// 
  /// XML文件相對路徑
  /// 要插入行的列名數(shù)組,如:string[] Columns = {"name","IsMarried"};
  /// 要插入行每列的值數(shù)組,如:string[] ColumnValue={"XML大全","false"};
  /// 成功返回true,否則返回false
  public static bool WriteXmlByDataSet(string strXmlPath, string[] Columns, string[] ColumnValue)
  {
   try
   {
    //根據(jù)傳入的XML路徑得到.XSD的路徑,兩個文件放在同一個目錄下
    string strXsdPath = strXmlPath.Substring(0, strXmlPath.IndexOf(".")) + ".xsd";
    DataSet ds = new DataSet();
    ds.ReadXmlSchema(GetXmlFullPath(strXsdPath)); //讀XML架構,關系到列的數(shù)據(jù)類型
    ds.ReadXml(GetXmlFullPath(strXmlPath));
    DataTable dt = ds.Tables[0];
    DataRow newRow = dt.NewRow();     //在原來的表格基礎上創(chuàng)建新行
    for (int i = 0; i < Columns.Length; i++)  //循環(huán)給一行中的各個列賦值
    {
     newRow[Columns[i]] = ColumnValue[i];
    }
    dt.Rows.Add(newRow);
    dt.AcceptChanges();
    ds.AcceptChanges();
    ds.WriteXml(GetXmlFullPath(strXmlPath));
    return true;
   }
   catch (Exception)
   {
    return false;
   }
  }
  #endregion

  #region 修改數(shù)據(jù)
  /// 
  /// 修改指定節(jié)點的數(shù)據(jù)
  /// 
  /// 節(jié)點
  /// 值
  public void Update(string node, string value)
  {
   try
   {
    XmlDocument doc = XMLLoad();
    XmlNode xn = doc.SelectSingleNode(node);
    xn.InnerText = value;
    doc.Save(AppDomain.CurrentDomain.BaseDirectory.ToString() + XMLPath);
   }
   catch { }
  }

  /// 
  /// 修改指定節(jié)點的數(shù)據(jù)
  /// 
  /// 路徑
  /// 節(jié)點
  /// 值
  /// 使用示列:
  /// XMLProsess.Insert(path, "/Node","Value")
  /// XMLProsess.Insert(path, "/Node","Value")
  public static void Update(string path, string node, string value)
  {
   try
   {
    XmlDocument doc = XMLLoad(path);
    XmlNode xn = doc.SelectSingleNode(node);
    xn.InnerText = value;
    doc.Save(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
   }
   catch { }
  }

  /// 
  /// 修改指定節(jié)點的屬性值(靜態(tài))
  /// 
  /// 路徑
  /// 節(jié)點
  /// 屬性名,非空時修改該節(jié)點屬性值,否則修改節(jié)點值
  /// 值
  /// 使用示列:
  /// XMLProsess.Insert(path, "/Node", "", "Value")
  /// XMLProsess.Insert(path, "/Node", "Attribute", "Value")
  public static void Update(string path, string node, string attribute, string value)
  {
   try
   {
    XmlDocument doc = XMLLoad(path);
    XmlNode xn = doc.SelectSingleNode(node);
    XmlElement xe = (XmlElement)xn;
    if (attribute.Equals(""))
     xe.InnerText = value;
    else
     xe.SetAttribute(attribute, value);
    doc.Save(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
   }
   catch { }
  }

  /// 
  /// 更改符合條件的一條記錄
  /// 
  /// XML文件路徑
  /// 列名數(shù)組
  /// 列值數(shù)組
  /// 條件列名
  /// 條件列值
  public static bool UpdateXmlRow(string strXmlPath, string[] Columns, string[] ColumnValue, string strWhereColumnName, string strWhereColumnValue)
  {
   try
   {
    string strXsdPath = strXmlPath.Substring(0, strXmlPath.IndexOf(".")) + ".xsd";
    DataSet ds = new DataSet();
    ds.ReadXmlSchema(GetXmlFullPath(strXsdPath));//讀XML架構,關系到列的數(shù)據(jù)類型
    ds.ReadXml(GetXmlFullPath(strXmlPath));

    //先判斷行數(shù)
    if (ds.Tables[0].Rows.Count > 0)
    {
     for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
     {
      //如果當前記錄為符合Where條件的記錄
      if (ds.Tables[0].Rows[i][strWhereColumnName].ToString().Trim().Equals(strWhereColumnValue))
      {
       //循環(huán)給找到行的各列賦新值
       for (int j = 0; j < Columns.Length; j++)
       {
        ds.Tables[0].Rows[i][Columns[j]] = ColumnValue[j];
       }
       ds.AcceptChanges();      //更新DataSet
       ds.WriteXml(GetXmlFullPath(strXmlPath));//重新寫入XML文件
       return true;
      }
     }

    }
    return false;
   }
   catch (Exception)
   {
    return false;
   }
  }
  #endregion

  #region 刪除數(shù)據(jù)
  /// 
  /// 刪除節(jié)點值
  /// 
  /// 路徑
  /// 節(jié)點
  /// 屬性名,非空時刪除該節(jié)點屬性值,否則刪除節(jié)點值
  /// 值
  /// 使用示列:
  /// XMLProsess.Delete(path, "/Node", "")
  /// XMLProsess.Delete(path, "/Node", "Attribute")
  public static void Delete(string path, string node)
  {
   try
   {
    XmlDocument doc = XMLLoad(path);
    XmlNode xn = doc.SelectSingleNode(node);
    xn.ParentNode.RemoveChild(xn);
    doc.Save(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
   }
   catch { }
  }

  /// 
  /// 刪除數(shù)據(jù)
  /// 
  /// 路徑
  /// 節(jié)點
  /// 屬性名,非空時刪除該節(jié)點屬性值,否則刪除節(jié)點值
  /// 值
  /// 使用示列:
  /// XMLProsess.Delete(path, "/Node", "")
  /// XMLProsess.Delete(path, "/Node", "Attribute")
  public static void Delete(string path, string node, string attribute)
  {
   try
   {
    XmlDocument doc = XMLLoad(path);
    XmlNode xn = doc.SelectSingleNode(node);
    XmlElement xe = (XmlElement)xn;
    if (attribute.Equals(""))
     xn.ParentNode.RemoveChild(xn);
    else
     xe.RemoveAttribute(attribute);
    doc.Save(AppDomain.CurrentDomain.BaseDirectory.ToString() + path);
   }
   catch { }
  }

  /// 
  /// 刪除所有行
  /// 
  /// XML路徑
  public static bool DeleteXmlAllRows(string strXmlPath)
  {
   try
   {
    DataSet ds = new DataSet();
    ds.ReadXml(GetXmlFullPath(strXmlPath));
    if (ds.Tables[0].Rows.Count > 0)
    {
     ds.Tables[0].Rows.Clear();
    }
    ds.WriteXml(GetXmlFullPath(strXmlPath));
    return true;
   }
   catch (Exception)
   {
    return false;
   }
  }

  /// 
  /// 通過刪除DataSet中指定索引行,重寫XML以實現(xiàn)刪除指定行
  /// 
  /// 要刪除的行在DataSet中的Index值
  public static bool DeleteXmlRowByIndex(string strXmlPath, int iDeleteRow)
  {
   try
   {
    DataSet ds = new DataSet();
    ds.ReadXml(GetXmlFullPath(strXmlPath));
    if (ds.Tables[0].Rows.Count > 0)
    {
     ds.Tables[0].Rows[iDeleteRow].Delete();
    }
    ds.WriteXml(GetXmlFullPath(strXmlPath));
    return true;
   }
   catch (Exception)
   {
    return false;
   }
  }

  /// 
  /// 刪除指定列中指定值的行
  /// 
  /// XML相對路徑
  /// 列名
  /// 指定值
  public static bool DeleteXmlRows(string strXmlPath, string strColumn, string[] ColumnValue)
  {
   try
   {
    DataSet ds = new DataSet();
    ds.ReadXml(GetXmlFullPath(strXmlPath));
    if (ds.Tables[0].Rows.Count > 0)
    {
     //判斷行多還是刪除的值多,多的for循環(huán)放在里面
     if (ColumnValue.Length > ds.Tables[0].Rows.Count)
     {
      for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
      {
       for (int j = 0; j < ColumnValue.Length; j++)
       {
        if (ds.Tables[0].Rows[i][strColumn].ToString().Trim().Equals(ColumnValue[j]))
        {
         ds.Tables[0].Rows[i].Delete();
        }
       }
      }
     }
     else
     {
      for (int j = 0; j < ColumnValue.Length; j++)
      {
       for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
       {
        if (ds.Tables[0].Rows[i][strColumn].ToString().Trim().Equals(ColumnValue[j]))
        {
         ds.Tables[0].Rows[i].Delete();
        }
       }
      }
     }
     ds.WriteXml(GetXmlFullPath(strXmlPath));
    }
    return true;
   }
   catch (Exception)
   {
    return false;
   }
  }
  #endregion
 }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


本文題目:C#XML操作類分享
鏈接分享:http://weahome.cn/article/jeioge.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部