XML 配置文件 XmlDoument.Save 未更新 ConnectionString

Posted

技术标签:

【中文标题】XML 配置文件 XmlDoument.Save 未更新 ConnectionString【英文标题】:XML Config file XmlDoument.Save is not updating ConnectionString 【发布时间】:2012-11-08 08:40:27 【问题描述】:

我有一个配置文件,我在其中存储 ConnectionString。我想通过使用 XMLDocument 物理更改 connectionString。但是在我更改并调用 XmlDocument.Save("DatabaseSetting.config") 后,它没有生效。 我的代码如下:

                    ConfigXmlDocument doc = new ConfigXmlDocument();
                    doc.Load("DatabaseSetting.config");
                    XmlNode ConStrinNode = doc.SelectSingleNode("/connectionStrings/add");
                    ConStrinNode.Attributes["connectionString"].Value = newString;
                    doc.Save("DatabaseSetting.config");

任何快速帮助都将受到欢迎。

【问题讨论】:

【参考方案1】:

哦,我明白了! XML 文件在 bin 文件夹中更新。 打扰了。

【讨论】:

以上是关于XML 配置文件 XmlDoument.Save 未更新 ConnectionString的主要内容,如果未能解决你的问题,请参考以下文章

Spring xml配置文件相对路径问题

MyBatis之xml配置配置文件(xml配置文件)

spring的xml配置文件的xml文件头详解

java 在xml文件中怎么获取配置文件中的参数

logback.xml引入外部配置文件

web.xml文件主要配置都有哪些,都有啥含义