码迷,mamicode.com
首页 > Windows程序 > 详细

C# 操作xml文件

时间:2015-02-03 14:55:22      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

  /// <summary>
        /// 修改XML
        /// </summary>
        /// <param>test</param>
        public static void ChangeXml(string test)
        {
            string xmlPath = "config";//当前文件夹下的config
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load(xmlPath);
            XmlNodeList settings = xmlDoc.SelectNodes("configuration/applicationSettings/setting");
            foreach (XmlNode node in settings)
            {
                XmlNode valueNode = node.SelectSingleNode("value");
                string[] uri = valueNode.InnerText.Split(‘/‘);
                valueNode.InnerText = "http://" + test + "/" + uri[uri.Length - 1];
            }
            xmlDoc.Save(configPath);
        }

C# 操作xml文件

标签:

原文地址:http://www.cnblogs.com/anyben/p/4269868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!