Config文件的读写

 using System;
using System.Configuration;
using System.Xml; namespace COMMON
{
public class ConfigHelperClass
{
public string ReadConfig()
{
return ConfigurationSettings.AppSettings["constr"].ToString();
} public void WriteConfig()
{
XmlDocument doc=new XmlDocument();  
//获得配置文件的全路径  
string strFileName = AppDomain.CurrentDomain.BaseDirectory.ToString()+ "configTest.exe.config";
doc.Load(strFileName);  
//找出名称为“add”的所有元素  
XmlNodeList nodes=doc.GetElementsByTagName("add");  
for(int i=;i<nodes.Count;i++)  
{    
//获得将当前元素的key属性    
XmlAttribute att=nodes[i].Attributes["key"];    
//根据元素的第一个属性来判断当前的元素是不是目标元素    
if (att.Value=="time")     
{      
//对目标元素中的第二个属性赋值     
att=nodes[i].Attributes["value"];
att.Value = DateTime.Now.ToString(); ;      
break;    
}  
}  
//保存上面的修改  
doc.Save(strFileName);
}
}
}
上一篇:NSIS(001)检测和结束进程是否运行?


下一篇:Java学习路线|转至CodeSheep