博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
winform 写app。config
阅读量:6291 次
发布时间:2019-06-22

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

public void SaveConfig(string ConnenctionString, string strKey)//写入动态的数据库配置信息 { XmlDocument doc = new XmlDocument(); //获得配置文件的全路径 //获取App.config文件绝对路径 //string strFileName = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; //这是获取配置文件路径的 //strFileName = strFileName.Substring(0, strFileName.Length - 10) + "App.config"; //这是获取配置文件的 //string strFileName = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile; string strFileName = System.Windows.Forms.Application.ExecutablePath + ".config"; doc.Load(strFileName); //找出名称为“add”的所有元素 XmlNodeList nodes = doc.GetElementsByTagName("add"); for (int i = 0; i < nodes.Count; i++) { //获得将当前元素的key属性 XmlAttribute att = nodes[i].Attributes["key"]; //根据元素的第一个属性来判断当前的元素是不是目标元素 if (att.Value == strKey) { //对目标元素中的第二个属性赋值 att = nodes[i].Attributes["value"]; att.Value = ConnenctionString; break; } } doc.Save(strFileName); }

转载于:https://www.cnblogs.com/windback/archive/2012/03/07/2382962.html

你可能感兴趣的文章
Java 5 特性 Instrumentation 实践
查看>>
AppScan使用
查看>>
Java NIO框架Netty教程(三) 字符串消息收发(转)
查看>>
Ucenter 会员同步登录通讯原理
查看>>
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>