博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Winform读写App.config文件以及重启程序
阅读量:5840 次
发布时间:2019-06-18

本文共 3032 字,大约阅读时间需要 10 分钟。

    1. //重启主程序  
    2. //System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location);  
    3. #region 读存app.config字段值  
    4. public static string GetConfigValue(string appKey)  
    5. {  
    6.     XmlDocument xDoc = new XmlDocument();  
    7.     try  
    8.     {  
    9.         //缓存路径  
    10.         xDoc.Load(System.Windows.Forms.Application.ExecutablePath + ".config");  
    11.         System.Xml.XmlNode xNode;  
    12.         System.Xml.XmlElement xElem;  
    13.         xNode = xDoc.SelectSingleNode("//appSettings");  
    14.         xElem = (System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='" + appKey + "']");  
    15.         if (xElem != null)  
    16.             return xElem.GetAttribute("value");  
    17.         else  
    18.             return "";  
    19.     }  
    20.     catch  
    21.     {  
    22.         return "";  
    23.     }  
    24. }  
    25.   
    26.   
    27. public static void SetConfigValue(string AppKey, string AppValue)  
    28. {  
    29.     XmlDocument xDoc = new XmlDocument();  
    30.     xDoc.Load(System.Windows.Forms.Application.ExecutablePath + ".config");  
    31.   
    32.     XmlNode xNode;  
    33.     XmlElement xElem1;  
    34.     XmlElement xElem2;  
    35.     xNode = xDoc.SelectSingleNode("//appSettings");  
    36.   
    37.     xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");  
    38.     if (xElem1 != null) xElem1.SetAttribute("value", AppValue);  
    39.     else  
    40.     {  
    41.         xElem2 = xDoc.CreateElement("add");  
    42.         xElem2.SetAttribute("key", AppKey);  
    43.         xElem2.SetAttribute("value", AppValue);  
    44.         xNode.AppendChild(xElem2);  
    45.     }  
    46.     xDoc.Save(System.Windows.Forms.Application.ExecutablePath + ".config");  
    47. }  
    48. #endregion 

 

//重启主程序        //System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location);        #region 读存app.config字段值        public static string GetConfigValue(string appKey)        {            XmlDocument xDoc = new XmlDocument();            try            {                //缓存路径                xDoc.Load(System.Windows.Forms.Application.ExecutablePath + ".config");                System.Xml.XmlNode xNode;                System.Xml.XmlElement xElem;                xNode = xDoc.SelectSingleNode("//appSettings");                xElem = (System.Xml.XmlElement)xNode.SelectSingleNode("//add[@key='" + appKey + "']");                if (xElem != null)                    return xElem.GetAttribute("value");                else                    return "";            }            catch            {                return "";            }        }        public static void SetConfigValue(string AppKey, string AppValue)        {            XmlDocument xDoc = new XmlDocument();            xDoc.Load(System.Windows.Forms.Application.ExecutablePath + ".config");            XmlNode xNode;            XmlElement xElem1;            XmlElement xElem2;            xNode = xDoc.SelectSingleNode("//appSettings");            xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@key='" + AppKey + "']");            if (xElem1 != null) xElem1.SetAttribute("value", AppValue);            else            {                xElem2 = xDoc.CreateElement("add");                xElem2.SetAttribute("key", AppKey);                xElem2.SetAttribute("value", AppValue);                xNode.AppendChild(xElem2);            }            xDoc.Save(System.Windows.Forms.Application.ExecutablePath + ".config");        }        #endregion

 

转载于:https://www.cnblogs.com/webenh/p/5745354.html

你可能感兴趣的文章
Java调用C++类库--JNI
查看>>
gles和opengl版本对照表
查看>>
微信开发(二)自己的代码
查看>>
python netwokx环境搭建
查看>>
面向空实现类继承
查看>>
1303: Decimal
查看>>
奥数 --- 找规律 + 总结
查看>>
虚拟机开机提示:This virtual machine appears to be in use
查看>>
新生代大小对GC的影响
查看>>
Bootstrap框架
查看>>
深入理解jvm jdk1,7(19)
查看>>
DP(递归打印路径) UVA 662 Fast Food
查看>>
Docker commit 命令保存的镜像文件太大的问题
查看>>
航院 6213 Chinese Zodiac
查看>>
关于Spring中的<context:annotation-config/>配置作用
查看>>
47.使用 RequireJS 加载 AngularJS
查看>>
2.mybatis实战教程(mybatis in action)之二:以接口的方式编程
查看>>
Window setInterval() 方法
查看>>
SqlServer2012 数据库的同步之SQL JOB + 建立链接服务器
查看>>
Hibernate查询(Query Language)
查看>>