欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

DotNet程序配置文件

  在實(shí)際的項(xiàng)目開(kāi)發(fā)中,對(duì)于項(xiàng)目的相關(guān)信息的配置較多,在.NET項(xiàng)目中,我們較多的將程序的相關(guān)配置直接存儲(chǔ)的.config文件中,例如web.config和app.config。

創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供曲陽(yáng)網(wǎng)站建設(shè)、曲陽(yáng)做網(wǎng)站、曲陽(yáng)網(wǎng)站設(shè)計(jì)、曲陽(yáng)網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、曲陽(yáng)企業(yè)網(wǎng)站模板建站服務(wù),十余年曲陽(yáng)做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

   .NET中配置文件分為兩部分:配置的實(shí)際內(nèi)容(位于appSetting節(jié)點(diǎn));指定了節(jié)點(diǎn)的處理程序(位于configSections節(jié)點(diǎn))。

   在.NET程序中,.config文件存儲(chǔ)相關(guān)配置是以xml格式,如果我們需要對(duì)配置文件進(jìn)行讀取和寫入,以及相關(guān)節(jié)點(diǎn)的刪除,我們可以直接采用處理xml文件的方式進(jìn)行操作。也可以采用.NET提供的類System.Configuration進(jìn)行相關(guān)操作。

  在System.Configuration類型中,對(duì)外提供了幾種方法調(diào)用,在這里介紹三種較為常用的:AppSettings,ConnectionStrings,GetSection。

  接下來(lái)看一下這些方法:

   1.AppSettings屬性:

/// <summary>
    /// 獲取當(dāng)前應(yīng)用程序默認(rèn)配置的 <see cref="T:System.Configuration.AppSettingsSection"/> 數(shù)據(jù)。
    /// </summary>
    /// 
    /// <returns>
    /// 返回一個(gè) <see cref="T:System.Collections.Specialized.NameValueCollection"/> 對(duì)象,該對(duì)象包含當(dāng)前應(yīng)用程序默認(rèn)配置的 <see cref="T:System.Configuration.AppSettingsSection"/> 對(duì)象的內(nèi)容。
    /// </returns>
    /// <exception cref="T:System.Configuration.ConfigurationErrorsException">未能使用應(yīng)用程序設(shè)置數(shù)據(jù)檢索 <see cref="T:System.Collections.Specialized.NameValueCollection"/> 對(duì)象。</exception>
    public static NameValueCollection AppSettings { get; }

2.ConnectionStrings屬性:

/// <summary>
    /// 獲取當(dāng)前應(yīng)用程序默認(rèn)配置的 <see cref="T:System.Configuration.ConnectionStringsSection"/> 數(shù)據(jù)。
    /// </summary>
    /// 
    /// <returns>
    /// 返回一個(gè) <see cref="T:System.Configuration.ConnectionStringSettingsCollection"/> 對(duì)象,該對(duì)象包含當(dāng)前應(yīng)用程序默認(rèn)配置的 <see cref="T:System.Configuration.ConnectionStringsSection"/> 對(duì)象的內(nèi)容。
    /// </returns>
    /// <exception cref="T:System.Configuration.ConfigurationErrorsException">未能檢索 <see cref="T:System.Configuration.ConnectionStringSettingsCollection"/> 對(duì)象。</exception>
    public static ConnectionStringSettingsCollection ConnectionStrings { get; }

3.GetSection方法:

/// <summary>
    /// 檢索當(dāng)前應(yīng)用程序默認(rèn)配置的指定配置節(jié)。
    /// </summary>
    /// 
    /// <returns>
    /// 指定的 <see cref="T:System.Configuration.ConfigurationSection"/> 對(duì)象,或者,如果該節(jié)不存在,則為 null。
    /// </returns>
    /// <param name="sectionName">配置節(jié)的路徑和名稱。</param><exception cref="T:System.Configuration.ConfigurationErrorsException">未能加載配置文件。</exception>
    public static object GetSection(string sectionName);

以上對(duì)幾種方法進(jìn)行了說(shuō)明,接下來(lái)我們具體看一下在項(xiàng)目中對(duì)配置文件的操作:

   1.獲取配置值:

        /// <summary>
        /// 獲取配置值
        /// </summary>
        /// <param name="key">節(jié)點(diǎn)名稱</param>
        /// <returns></returns>
        public static string GetAppSettingValue(string key)
        {
            if (string.IsNullOrEmpty(key))
            {
                throw new ArgumentNullException(key);
            }
            return ConfigurationManager.AppSettings[key];
        }

2.獲取連接字符串:

        /// <summary>
        /// 獲取連接字符串
        /// </summary>
        /// <param name="name">連接字符串名稱</param>
        /// <returns></returns>
        public static string GetConnectionString(string name)
        {
            if (string.IsNullOrEmpty(name))
            {
                throw new ArgumentNullException(name);
            }
            return ConfigurationManager.ConnectionStrings[name].ConnectionString;
        }

3.獲取節(jié)點(diǎn)的所有屬性(處理單個(gè)節(jié)點(diǎn)):

         /// <summary>
        /// 獲取節(jié)點(diǎn)的所有屬性(處理單個(gè)節(jié)點(diǎn))
        /// </summary>
        /// <param name="name">節(jié)點(diǎn)名稱</param>
        /// <returns>屬性的Hashtable列表</returns>
        public static Hashtable GetNodeAttribute(string name)
        {
            if (string.IsNullOrEmpty(name))
            {
                throw new ArgumentNullException(name);
            }
            return (Hashtable)ConfigurationManager.GetSection(name);
        }

  以上的是三種獲取配置文件的相關(guān)節(jié)點(diǎn)的操作,以下提供幾種全局的寫入和刪除操作方法:

    4.設(shè)置配置值(存在則更新,不存在則新增):

        /// <summary>
        /// 設(shè)置配置值(存在則更新,不存在則新增)
        /// </summary>
        /// <param name="key">節(jié)點(diǎn)名稱</param>
        /// <param name="value">節(jié)點(diǎn)值</param>
        public static void SetAppSettingValue(string key, string value)
        {
            if (string.IsNullOrEmpty(key))
            {
                throw new ArgumentNullException(key);
            }
            if (string.IsNullOrEmpty(value))
            {
                throw new ArgumentNullException(value);
            }
            try
            {
                var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                var setting = config.AppSettings.Settings[key];
                if (setting == null)
                {
                    config.AppSettings.Settings.Add(key, value);
                }
                else
                {
                    setting.Value = value;
                }

                config.Save(ConfigurationSaveMode.Modified);
                ConfigurationManager.RefreshSection("appSettings");
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }

5.刪除配置值:

        /// <summary>
        /// 刪除配置值
        /// </summary>
        /// <param name="key">節(jié)點(diǎn)名稱</param>
        public static void RemoveAppSetting(string key)
        {
            if (string.IsNullOrEmpty(key))
            {
                throw new ArgumentNullException(key);
            }
            try
            {
                var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                config.AppSettings.Settings.Remove(key);
                config.Save(ConfigurationSaveMode.Modified);
                ConfigurationManager.RefreshSection("appSettings");
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }

6.設(shè)置連接字符串的值(存在則更新,不存在則新增):

        /// <summary>
        /// 設(shè)置連接字符串的值(存在則更新,不存在則新增)
        /// </summary>
        /// <param name="name">名稱</param>
        /// <param name="connstr">連接字符串</param>
        /// <param name="provider">程序名稱屬性</param>
        public static void SetConnectionString(string name, string connstr, string provider)
        {
            if (string.IsNullOrEmpty(name))
            {
                throw new ArgumentNullException(name);
            }
            if (string.IsNullOrEmpty(connstr))
            {
                throw new ArgumentNullException(connstr);
            }
            if (string.IsNullOrEmpty(provider))
            {
                throw new ArgumentNullException(provider);
            }
            try
            {
                var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                var connStrSettings = config.ConnectionStrings.ConnectionStrings[name];
                if (connStrSettings != null)
                {
                    connStrSettings.ConnectionString = connstr;
                    connStrSettings.ProviderName = provider;
                }
                else
                {
                    connStrSettings = new ConnectionStringSettings(name, connstr, provider);
                    config.ConnectionStrings.ConnectionStrings.Add(connStrSettings);
                }

                config.Save(ConfigurationSaveMode.Modified);
                ConfigurationManager.RefreshSection("connectionStrings");
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }

7.刪除連接字符串配置項(xiàng):

        /// <summary>
        /// 刪除連接字符串配置項(xiàng)
        /// </summary>
        /// <param name="name">字符串名稱</param>
        public static void RemoveConnectionString(string name)
        {
            if (string.IsNullOrEmpty(name))
            {
                throw new ArgumentNullException(name);
            }
            try
            {
                var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                config.ConnectionStrings.ConnectionStrings.Remove(name);
                config.Save(ConfigurationSaveMode.Modified);
                ConfigurationManager.RefreshSection("connectionStrings");
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }

  以上的幾種新增和刪除操作中,如果測(cè)試過(guò)就會(huì)發(fā)現(xiàn)本地的.config文件中沒(méi)有對(duì)應(yīng)的新增節(jié)點(diǎn),以及需要?jiǎng)h除的文件節(jié)點(diǎn)也沒(méi)有刪除掉。這個(gè)原因主要是”在新增appSettings節(jié)點(diǎn)時(shí),不會(huì)寫入App.config或web.config中,因?yàn)锳ppSetting這樣的節(jié)點(diǎn)屬于內(nèi)置節(jié)點(diǎn),會(huì)存儲(chǔ)在Machine.config文件中。.NET內(nèi)置的處理程序定義于machine.config中,提供全局服務(wù),無(wú)須進(jìn)行任何額外工作就可以直接使用?!?/p>

  如果需要對(duì)項(xiàng)目中的配置文件進(jìn)行新增和刪除操作,現(xiàn)在提供一種方法,采用對(duì)xml文件的操作方式:

     8.更新或新增[appSettings]節(jié)點(diǎn)的子節(jié)點(diǎn)值,存在則更新子節(jié)點(diǎn)Value,不存在則新增子節(jié)點(diǎn),返回成功與否布爾值:

        /// <summary>
        /// 更新或新增[appSettings]節(jié)點(diǎn)的子節(jié)點(diǎn)值,存在則更新子節(jié)點(diǎn)Value,不存在則新增子節(jié)點(diǎn),返回成功與否布爾值
        /// </summary>
        /// <param name="filename">配置文件的路徑</param>
        /// <param name="key">子節(jié)點(diǎn)Key值</param>
        /// <param name="value">子節(jié)點(diǎn)value值</param>
        /// <returns>返回成功與否布爾值</returns>
        public static bool UpdateOrCreateAppSetting(string filename, string key, string value)
        {
            if (string.IsNullOrEmpty(filename))
            {
                throw new ArgumentNullException(filename);
            }
            if (string.IsNullOrEmpty(key))
            {
                throw new ArgumentNullException(key);
            }
            if (string.IsNullOrEmpty(value))
            {
                throw new ArgumentNullException(value);
            }
            var doc = new XmlDocument();
            //加載配置文件
            doc.Load(filename);
            //得到[appSettings]節(jié)點(diǎn)
            var node = doc.SelectSingleNode("http://appSettings");
            try
            {
                //得到[appSettings]節(jié)點(diǎn)中關(guān)于Key的子節(jié)點(diǎn)
                if (node != null)
                {
                    var element = (XmlElement)node.SelectSingleNode("http://add[@key='" + key + "']");
                    if (element != null)
                    {
                        //存在則更新子節(jié)點(diǎn)Value
                        element.SetAttribute("value", value);
                    }
                    else
                    {
                        //不存在則新增子節(jié)點(diǎn)
                        var subElement = doc.CreateElement("add");
                        subElement.SetAttribute("key", key);
                        subElement.SetAttribute("value", value);
                        node.AppendChild(subElement);
                    }
                }
                //保存至配置文件(方式一)
                using (var xmlwriter = new XmlTextWriter(filename, null))
                {
                    xmlwriter.Formatting = Formatting.Indented;
                    doc.WriteTo(xmlwriter);
                    xmlwriter.Flush();
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
            return true;
        }

   9.更新或新增[connectionStrings]節(jié)點(diǎn)的子節(jié)點(diǎn)值,存在則更新子節(jié)點(diǎn),不存在則新增子節(jié)點(diǎn),返回成功與否布爾值:

        /// <summary>
        /// 更新或新增[connectionStrings]節(jié)點(diǎn)的子節(jié)點(diǎn)值,存在則更新子節(jié)點(diǎn),不存在則新增子節(jié)點(diǎn),返回成功與否布爾值
        /// </summary>
        /// <param name="filename">配置文件路徑</param>
        /// <param name="name">子節(jié)點(diǎn)name值</param>
        /// <param name="connectionString">子節(jié)點(diǎn)connectionString值</param>
        /// <param name="providerName">子節(jié)點(diǎn)providerName值</param>
        /// <returns>返回成功與否布爾值</returns>
        public static bool UpdateOrCreateConnectionString(string filename, string name, string connectionString, string providerName)
        {
            if (string.IsNullOrEmpty(filename))
            {
                throw new ArgumentNullException(filename);
            }
            if (string.IsNullOrEmpty(connectionString))
            {
                throw new ArgumentNullException(connectionString);
            }
            if (string.IsNullOrEmpty(providerName))
            {
                throw new ArgumentNullException(providerName);
            }
            var doc = new XmlDocument();
            //加載配置文件
            doc.Load(filename);
            //得到[connectionStrings]節(jié)點(diǎn)
            var node = doc.SelectSingleNode("http://connectionStrings");
            try
            {
                //得到[connectionStrings]節(jié)點(diǎn)中關(guān)于Name的子節(jié)點(diǎn)
                if (node != null)
                {
                    XmlElement element = (XmlElement)node.SelectSingleNode("http://add[@name='" + name + "']");
                    if (element != null)
                    {
                        //存在則更新子節(jié)點(diǎn)
                        element.SetAttribute("connectionString", connectionString);
                        element.SetAttribute("providerName", providerName);
                    }
                    else
                    {
                        //不存在則新增子節(jié)點(diǎn)
                        var subElement = doc.CreateElement("add");
                        subElement.SetAttribute("name", name);
                        subElement.SetAttribute("connectionString", connectionString);
                        subElement.SetAttribute("providerName", providerName);
                        node.AppendChild(subElement);
                    }
                }
                //保存至配置文件(方式二)
                doc.Save(filename);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
            return true;
        }

   10.刪除[appSettings]節(jié)點(diǎn)中包含Key值的子節(jié)點(diǎn),返回成功與否布爾值:

        /// <summary>
        /// 刪除[appSettings]節(jié)點(diǎn)中包含Key值的子節(jié)點(diǎn),返回成功與否布爾值
        /// </summary>
        /// <param name="filename">配置文件路徑</param>
        /// <param name="key">要?jiǎng)h除的子節(jié)點(diǎn)Key值</param>
        /// <returns>返回成功與否布爾值</returns>
        public static bool DeleteByKey(string filename, string key)
        {
            if (string.IsNullOrEmpty(filename))
            {
                throw new ArgumentNullException(filename);
            }
            if (string.IsNullOrEmpty(key))
            {
                throw new ArgumentNullException(key);
            }
            var doc = new XmlDocument();
            //加載配置文件
            doc.Load(filename);
            //得到[appSettings]節(jié)點(diǎn)
            var node = doc.SelectSingleNode("http://appSettings");
            //得到[appSettings]節(jié)點(diǎn)中關(guān)于Key的子節(jié)點(diǎn)
            if (node != null)
            {
                var element = (XmlElement)node.SelectSingleNode("http://add[@key='" + key + "']");
                if (element != null)
                {
                    //存在則刪除子節(jié)點(diǎn)
                    if (element.ParentNode != null) element.ParentNode.RemoveChild(element);
                }
            }
            try
            {
                //保存至配置文件(方式一)
                using (var xmlwriter = new XmlTextWriter(filename, null))
                {
                    xmlwriter.Formatting = Formatting.Indented;
                    doc.WriteTo(xmlwriter);
                    xmlwriter.Flush();
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
            return true;
        }

   11.刪除[connectionStrings]節(jié)點(diǎn)中包含name值的子節(jié)點(diǎn),返回成功與否布爾值:

        /// <summary>
        /// 刪除[connectionStrings]節(jié)點(diǎn)中包含name值的子節(jié)點(diǎn),返回成功與否布爾值
        /// </summary>
        /// <param name="filename">配置文件路徑</param>
        /// <param name="name">要?jiǎng)h除的子節(jié)點(diǎn)name值</param>
        /// <returns>返回成功與否布爾值</returns>
        public static bool DeleteByName(string filename, string name)
        {
            if (string.IsNullOrEmpty(filename))
            {
                throw new ArgumentNullException(filename);
            }
            if (string.IsNullOrEmpty(name))
            {
                throw new ArgumentNullException(name);
            }
            var doc = new XmlDocument();
            //加載配置文件
            doc.Load(filename);
            //得到[connectionStrings]節(jié)點(diǎn)
            var node = doc.SelectSingleNode("http://connectionStrings");
            //得到[connectionStrings]節(jié)點(diǎn)中關(guān)于Name的子節(jié)點(diǎn)
            if (node != null)
            {
                var element = (XmlElement)node.SelectSingleNode("http://add[@name='" + name + "']");
                if (element != null)
                {
                    //存在則刪除子節(jié)點(diǎn)
                    node.RemoveChild(element);
                }
            }
            try
            {
                //保存至配置文件(方式二)
                doc.Save(filename);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
            return true;
        }

  以上對(duì)System.Configuration類的幾種常用方法做了簡(jiǎn)單說(shuō)明,也提供了幾種較為常用的操作方法,希望對(duì)在項(xiàng)目中需要使用到配置文件的開(kāi)發(fā)人員有用。

網(wǎng)站欄目:DotNet程序配置文件
本文網(wǎng)址:http://aaarwkj.com/article24/gjgece.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司企業(yè)網(wǎng)站制作、搜索引擎優(yōu)化、靜態(tài)網(wǎng)站、商城網(wǎng)站、網(wǎng)站策劃

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設(shè)
亚洲欧美日韩专区一区| 美腿丝袜清纯唯美亚洲另类| 亚洲av一区二区三区| 91精品国产综合久久男男| 中文字幕在线视频黄字幕| 欧美大片免费久久精品| 久久午夜福利欧美视频| 亚洲欧美av中文日韩二区| 黄色亚洲一区二区三区四区| 96热久久这里只有精品| 在线国产偷拍自拍视频| 国产传媒在线观看精品| 久久色综合色悠悠色综合色| 成人黄色av网站在线观看 | 免费看真人性生活视频| 亚洲成人高清在线视频| 日韩在线国产亚洲精品| 国产九色91中文在线视频| 麻豆视传媒短视频网站免费| 国产亚洲欧美日韩看国产| 女人的天堂av免费在线观看| 国产情色自拍在线观看| 日本精品一级免费在线| 中文字幕日韩精品久久| 92国产精品午夜福利| 下载一个日韩暴力黄色录像| 99热免费精品在线观看| 五月开心婷婷中文字幕| 亚洲综合日韩精品国产av| 蜜臀午夜精品视频在线观看| 亚洲男人天堂在线观看| 蜜桃视频中文字幕二区三区| 亚洲不卡高清一区二区三区| 青青草原网址在线观看| 欧美三级视频一区二区三区| 亚洲伦理一区二区三区中文| 涩五月婷婷开心中文字幕| 最新免费观看男女啪啪视频| 国产三级黄色片免费看| 青青草老司机在线视频| 日本免费一区二区三区等视频|