1. 程式人生 > >C# XML操作 程式碼大全(讀XML,寫XML,更新,刪除節點,與dataset結合等)

C# XML操作 程式碼大全(讀XML,寫XML,更新,刪除節點,與dataset結合等)


using System; 
using System.Data; 
using System.Xml; 
using System.Windows.Forms; 

//*************************************** 
// 作者: ∮明天去要飯 
// QICQ: 305725744 
// .Net群: 6370988 
// http://blog.csdn.net/kgdiwss 
//*************************************** 

namespace YSTRP.Common 

/// 
/// OperateXmlByDataSet 的摘要說明。 
/// 
public class OperateXmlByDataSet 

public OperateXmlByDataSet() 

// 
// TODO: 在此處新增建構函式邏輯 
// 


#region GetDataSetByXml 
/// 
/// 讀取xml直接返回DataSet 
/// 
/// xml檔案相對路徑 
/// 
public static DataSet GetDataSetByXml(string strXmlPath) 

try 

DataSet ds = new DataSet(); 
ds.ReadXml(GetXmlFullPath(strXmlPath)); 
if(ds.Tables.Count > 0) 

return ds; 

return null; 

catch(Exception ex) 

System.Windows.Forms.MessageBox.Show(ex.ToString()); 
return null; 


#endregion 
#region GetDataViewByXml 
/// 
/// 讀取Xml返回一個經排序或篩選後的DataView 
/// 
/// 
/// 篩選條件,如:"name = 'kgdiwss'" 
/// 排序條件,如:"Id desc" 
/// 
public static DataView GetDataViewByXml(string strXmlPath,string strWhere,string strSort) 

try 

DataSet ds = new DataSet(); 
ds.ReadXml(GetXmlFullPath(strXmlPath)); 
DataView dv = new DataView(ds.Tables[0]); 
if(strSort != null) 

dv.Sort = strSort; 

if(strWhere != null) 

dv.RowFilter = strWhere; 

return dv; 

catch(Exception) 

return null; 


#endregion 


#region WriteXmlByDataSet 
/// 
/// 向Xml檔案插入一行資料 
/// 
/// xml檔案相對路徑 
/// 要插入行的列名陣列,如:string[] Columns = {"name","IsMarried"}; 
/// 要插入行每列的值陣列,如:string[] ColumnValue={"明天去要飯","false"}; 
/// 成功返回true,否則返回false 
public static bool WriteXmlByDataSet(string strXmlPath,string[] Columns,string[] ColumnValue) 

try 

//根據傳入的XML路徑得到.XSD的路徑,兩個檔案放在同一個目錄下 
string strXsdPath = strXmlPath.Substring(0,strXmlPath.IndexOf(".")) + ".xsd"; 

DataSet ds = new DataSet(); 
//讀xml架構,關係到列的資料型別 
ds.ReadXmlSchema(GetXmlFullPath(strXsdPath)); 
ds.ReadXml(GetXmlFullPath(strXmlPath)); 
DataTable dt = ds.Tables[0]; 
//在原來的表格基礎上建立新行 
DataRow newRow = dt.NewRow(); 

//迴圈給一行中的各個列賦值 
for(int i=0; i< Columns.Length; i++) 

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 UpdateXmlRow 
/// 
/// 更行符合條件的一條Xml記錄 
/// 
/// XML檔案路徑 
/// 列名陣列 
/// 列值陣列 
/// 條件列名 
/// 條件列值 
/// 
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(); 
//讀xml架構,關係到列的資料型別 
ds.ReadXmlSchema(GetXmlFullPath(strXsdPath)); 
ds.ReadXml(GetXmlFullPath(strXmlPath)); 

//先判斷行數 
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)) 

//迴圈給找到行的各列賦新值 
for(int j=0; j < Columns.Length; j++) 

ds.Tables[0].Rows[i][Columns[j]] = ColumnValue[j]; 

//更新DataSet 
ds.AcceptChanges(); 
//重新寫入XML檔案 
ds.WriteXml(GetXmlFullPath(strXmlPath)); 
return true; 




return false; 

catch(Exception) 

return false; 


#endregion 


#region DeleteXmlRowByIndex 
/// 
/// 通過刪除DataSet中iDeleteRow這一行,然後重寫Xml以實現刪除指定行 
/// 
/// 
/// 要刪除的行在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; 


#endregion 


#region DeleteXmlRows 
/// 
/// 刪除strColumn列中值為ColumnValue的行 
/// 
/// xml相對路徑 
/// 列名 
/// strColumn列中值為ColumnValue的行均會被刪除 
/// 
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迴圈放在裡面 
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 


#region DeleteXmlAllRows 
/// 
/// 刪除所有行 
/// 
/// XML路徑 
/// 
public static bool DeleteXmlAllRows(string strXmlPath) 

try 

DataSet ds = new DataSet(); 
ds.ReadXml(GetXmlFullPath(strXmlPath)); 
//如果記錄條數大於0 
if(ds.Tables[0].Rows.Count > 0) 

//移除所有記錄 
ds.Tables[0].Rows.Clear(); 

//重新寫入,這時XML檔案中就只剩根節點了 
ds.WriteXml(GetXmlFullPath(strXmlPath)); 
return true; 

catch(Exception) 

return false; 


#endregion 


#region GetXmlFullPath 
/// 
/// 返回完整路徑 
/// 
/// Xml的路徑 
/// 
public static string GetXmlFullPath(string strPath) 

if(strPath.IndexOf(":") > 0) 

return strPath; 

else 

return Application.StartupPath + strPath; 


#endregion