天天看點

C#讀寫app.config中的資料

讀語句:

          String str = ConfigurationManager.AppSettings["DemoKey"];

寫語句:

           Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

           cfa.AppSettings.Settings["DemoKey"].Value = "DemoValue";

           cfa.Save();

配置檔案内容格式:(app.config)

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

<appSettings>

    <add key="DemoKey" value="*" />

</appSettings>

</configuration>

System.Configuration.ConfigurationSettings.AppSettings["Key"];

但是現在FrameWork2.0已經明确表示此屬性已經過時。并建議改為ConfigurationManager或WebConfigurationManager。并且AppSettings屬性是隻讀的,并不支援修改屬性值.

但是要想調用ConfigurationManager必須要先在工程裡添加system.configuration.dll程式集的引用。(在解決方案管理器中右鍵點選工程名稱,在右鍵菜單中選擇添加引用,.net TablePage下即可找到)添加引用後可以用 String str = ConfigurationManager.AppSettings["Key"]來擷取對應的值了。

更新配置檔案:

Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

cfa.AppSettings.Settings.Add("key", "Name") || cfa.AppSettings.Settings["BrowseDir"].Value = "name";

最後調用

cfa.Save();

目前的配置檔案更新成功。

讀寫配置檔案app.config

在.Net中提供了配置檔案,讓我們可以很方面的處理配置資訊,這個配置是XML格式的。而且.Net中已經提供了一些通路這個檔案的功能。

1.讀取配置資訊

下面是一個配置檔案的具體内容:

<?xml version="1.0" encoding="utf-8"?>

<configuration>

<appSettings>

   <add key="ConnenctionString" value="*" />

   <add key="TmpPath" value="C:/Temp" />

   </appSettings>

</configuration>

.net提供了可以直接通路<appsettings>(注意大小寫)元素的方法,在這元素中有很多的子元素,這些子元素名稱都是“add”,有兩個屬性分别是“key”和“value”。一般情況下我們可以将自己的配置資訊寫在這個區域中,通過下面的方式進行通路:

string ConString=System.Configuration.ConfigurationSettings.AppSettings["ConnenctionString"];

在appsettings後面的是子元素的key屬性的值,例如appsettings["connenctionstring"],我們就是通路<add key="ConnenctionString" value="*" />這個子元素,它的傳回值就是“*”,即value屬性的值。

2.設定配置資訊

如果配置資訊是靜态的,我們可以手工配置,要注意格式。如果配置資訊是動态的,就需要我們寫程式來實作。在.Net中沒有寫配置檔案的功能,我們可以使用操作XML檔案的方式來操作配置檔案。下面就是一個寫配置檔案的例子。

         private void SaveConfig(string ConnenctionString)

         {

             XmlDocument doc=new XmlDocument();

             //獲得配置檔案的全路徑

             string strFileName=AppDomain.CurrentDomain.BaseDirectory.ToString()+"Code.exe.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=="ConnectionString")

                 {

                     //對目标元素中的第二個屬性指派

                     att=nodes[i].Attributes["value"];

                     att.Value=ConnenctionString;

                     break;

                 }

             }

             //儲存上面的修改

             doc.Save(strFileName);

         }

VS2005中讀寫配置檔案

VS2003中對于應用程式配置檔案(app.config或者web.config)隻提供了讀取的功能。而在VS2005中,對于配置檔案的功能有了很大的加強。在VS2005中,對于應用程式配置檔案的讀寫一般使用Configuration,ConfigurationManager兩個類。ConfigurationManager類為客戶應用程式提供了一個通路的功能。使用ConfigurationManager對象執行打開配置檔案的操作後,将會傳回一個Configuration的對象。通過程式實作讀寫配置檔案的代碼如下所示:

1.建立配置檔案中的配置節所對應的類。該類必須繼承自ConfigurationSection

   public sealed class ConfigurationSections : ConfigurationSection

     {

         [ConfigurationProperty("filename", DefaultValue = "default.txt")]

         public string FileName

         {

             get

             {

                 return (string)this["filename"];

             }

             set

             {

                 this["filename"] = value;

             }

         }

     }

     public sealed class BusinessSpaceConfiguration : ConfigurationSection

     {

         [ConfigurationProperty("filename")]

         public string FileName

         {

             get

             {

                 return (string)this["filename"];

             }

             set

             {

                 this["filename"] = value;

             }

         }

     }

2.建立配置檔案代碼

    private static void WriteAppConfiguration()

         {

             try

             {

                 ConfigurationSections configData = new ConfigurationSections();

                 configData.FileName = "abc.txt";

                 System.Configuration.Configuration   config =

ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

                 config.Sections.Remove("ConfigurationSections");

                 config.Sections.Add("ConfigurationSections", configData);

                 config.Save();

                 BusinessSpaceConfiguration bsconfigData = new BusinessSpaceConfiguration();

                 bsconfigData.FileName = "def.txt";

                 System.Configuration.Configuration config1 =

ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

                 config1.Sections.Remove("BusinessSpaceConfiguration");

                 config1.Sections.Add("BusinessSpaceConfiguration", bsconfigData);

                 config1.Save();                     

             }

             catch (Exception err)

             {

                 Console.Write(err.Message);

             }

         }

3.生成的配置檔案格式如下所示:

<?xml version="1.0" encoding="utf-8"?>

<configuration>

     <configSections>

         <section name="BusinessSpaceConfiguration"

type="ConsoleApplication1.BusinessSpaceConfiguration, ConsoleApplication1, Version=1.0.0.0,

Culture=neutral, PublicKeyToken=null" />

         <section name="ConfigurationSections" type="ConsoleApplication1.ConfigurationSections,

ConsoleApplication1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />

     </configSections>

     <BusinessSpaceConfiguration filename="def.txt" />

     <ConfigurationSections filename="abc.txt" />

</configuration>

4.讀取應用程式配置檔案

    private static void ReadAppConfiguration()

         {

             ConfigurationSections obj1 = ConfigurationManager.GetSection("ConfigurationSections")

as ConfigurationSections;

             BusinessSpaceConfiguration obj2 = ConfigurationManager.GetSection

("BusinessSpaceConfiguration") as BusinessSpaceConfiguration;

             Console.WriteLine(obj1.FileName);

             Console.WriteLine(obj2.FileName);

         }

自定義應用程式配置檔案(app.config)

1. 配置檔案概述:

應用程式配置檔案是标準的 XML 檔案,XML 标記和屬性是區分大小寫的。它是可以按需要更改的,開發人員可以使用配置檔案來更改設定,而不必重編譯應用程式。配置檔案的根節點是configuration。我們經常通路的是appSettings,它是由.Net預定義配置節。我們經常使用的配置檔案的架構是象下面的形式。先大概有個印象,通過後面的執行個體會有一個比較清楚的認識。下面的“配置節”可以了解為進行配置一個XML的節點。

常見配置檔案模式:

<configuration>

         <configSections>                    //配置節聲明區域,包含配置節和命名空間聲明

                 <section>                   //配置節聲明

             <sectionGroup>                  //定義配置節組

                 <section>                   //配置節組中的配置節聲明

         <appSettings>                       //預定義配置節

<Custom element for configuration section>   //配置節設定區域

2.隻有appSettings節的配置檔案及通路方法

下面是一個最常見的應用程式配置檔案的例子,隻有appSettings節。

<?xml version="1.0" encoding="utf-8"?>

<configuration>

     <appSettings>

         <add key="connectionstring" value="User ID=sa;Data Source=.;Password=;Initial

Catalog=test;Provider=SQLOLEDB.1;" />

         <add key="TemplatePATH" value="Template" />

     </appSettings>

</configuration>

下面來看看這樣的配置檔案如何方法。

string _connectionString=ConfigurationSettings.AppSettings["connectionstring"];

使用ConfigurationSettings類的靜态屬性AppSettings就可以直接方法配置檔案中的配置資訊。這個屬性的類型是NameValueCollection。

3.自定義配置檔案

3.1 自定義配置節

一個使用者自定義的配置節,在配置檔案中分為兩部分:一是在<configSections></configSections>配置節中聲明配置節(上面配置檔案模式中的“<section>”),另外是在<configSections></configSections >之後設定配置節(上面配置檔案模式中的“<Custom element for configuration section>”),有點類似一個變量先聲明,後使用一樣。聲明一個配置檔案的語句如下:

<section name=" " type=" "/>

<section>:聲明新配置節,即可建立新配置節。

name:自定義配置節的名稱。

type:自定義配置節的類型,主要包括System.Configuration.SingleTagSectionHandler、System.Configuration.DictionarySectionHandler、System.Configuration.NameValueSectionHandler。

不同的type不但設定配置節的方式不一樣,最後通路配置檔案的操作上也有差異。下面我們就舉一個配置檔案的

例子,讓它包含這三個不同的type。

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

     <configSections>

         <section name="Test1" type="System.Configuration.SingleTagSectionHandler"/>

         <section name="Test2" type="System.Configuration.DictionarySectionHandler"/>

         <section name="Test3" type="System.Configuration.NameValueSectionHandler" />

     </configSections>

     <Test1 setting1="Hello" setting2="World"/>

     <Test2>

         <add key="Hello" value="World" />

     </Test2>

     <Test3>

         <add key="Hello" value="World" />

     </Test3>   

</configuration>

我們對上面的自定義配置節進行說明。在聲明部分使用<section name="Test1" type="System.Configuration.SingleTagSectionHandler"/>聲明了一個配置節它的名字叫Test1,類型為SingleTagSectionHandler。在設定配置節部分使用 <Test1 setting1="Hello" setting2="World"/>設定了一個配置節,它的第一個設定的值是Hello,第二個值是World,當然還可以有更多。其它的兩個配置節和這個類似。

下面我們看在程式中如何通路這些自定義的配置節。我們用過ConfigurationSettings類的靜态方法GetConfig來擷取自定義配置節的資訊。

public static object GetConfig(string sectionName);

下面是通路這三個配置節的代碼:

//通路配置節Test1

IDictionary IDTest1 = (IDictionary)ConfigurationSettings.GetConfig("Test1");

string str = (string)IDTest1["setting1"] +" "+(string)IDTest1["setting2"];

MessageBox.Show(str);         //輸出Hello World

//通路配置節Test1的方法2

string[] values1=new string[IDTest1.Count];

IDTest1.Values.CopyTo(values1,0);

MessageBox.Show(values1[0]+" "+values1[1]);     //輸出Hello World

//通路配置節Test2

IDictionary IDTest2 = (IDictionary)ConfigurationSettings.GetConfig("Test2");

string[] keys=new string[IDTest2.Keys.Count];

string[] values=new string[IDTest2.Keys.Count];

IDTest2.Keys.CopyTo(keys,0);

IDTest2.Values.CopyTo(values,0);

MessageBox.Show(keys[0]+" "+values[0]);

//通路配置節Test3

NameValueCollection nc=(NameValueCollection)ConfigurationSettings.GetConfig("Test3");

MessageBox.Show(nc.AllKeys[0].ToString()+" "+nc["Hello"]);     //輸出Hello World

通過上面的代碼我們可以看出,不同的type通過GetConfig傳回的類型不同,具體獲得配置内容的方式也不一樣。

配置節處理程式

傳回類型

SingleTagSectionHandler

Systems.Collections.IDictionary

DictionarySectionHandler

Systems.Collections.IDictionary

NameValueSectionHandler

Systems.Collections.Specialized.NameValueCollection

3.2 自定義配置節組

配置節組是使用<sectionGroup>元素,将類似的配置節分到同一個組中。配置節組聲明部分将建立配置節的包含元素,在<configSections>元素中聲明配置節組,并将屬于該組的節置于<sectionGroup>元素中。下面是一個包含配置節組的配置檔案的例子:

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

     <configSections>

         <sectionGroup name="TestGroup">

             <section name="Test" type="System.Configuration.NameValueSectionHandler"/>

         </sectionGroup>

     </configSections>

     <TestGroup>

         <Test>

             <add key="Hello" value="World"/>

         </Test>

     </TestGroup>

</configuration>

下面是通路這個配置節組的代碼:

NameValueCollection nc=(NameValueCollection)ConfigurationSettings.GetConfig("TestGroup/Test");

MessageBox.Show(nc.AllKeys[0].ToString()+" "+nc["Hello"]);     //輸出Hello World

配置App.config

1. 向項目添加app.config檔案:

右擊項目名稱,選擇“添加”→“添加建立項”,在出現的“添加新項”對話框中,選擇“添加應用程式配置檔案”;如果項目以前沒有配置檔案,則預設的檔案名稱為“app.config”,單擊“确定”。出現在設計器視圖中的app.config檔案為:

<?xmlversion="1.0"encoding="utf-8" ?>

<configuration>

</configuration>

在項目進行編譯後,在bin/Debuge檔案下,将出現兩個配置檔案(以本項目為例),一個名為“JxcManagement.EXE.config”,另一個名為“JxcManagement.vshost.exe.config”。第一個檔案為項目實際使用的配置檔案,在程式運作中所做的更改都将被儲存于此;第二個檔案為原代碼“app.config”的同步檔案,在程式運作中不會發生更改。

2.  connectionStrings配置節:

請注意:如果您的SQL版本為2005 Express版,則預設安裝時SQL伺服器執行個體名為localhost/SQLExpress,須更改以下執行個體中“Data Source=localhost;”一句為“Data Source=localhost/SQLExpress;”,在等于号的兩邊不要加上空格。

<!--資料庫連接配接串-->

     <connectionStrings>

         <clear />

         <addname="conJxcBook" connectionString="Data Source=localhost;Initial Catalog=jxcbook;User                                   ID=sa;password=********"  providerName="System.Data.SqlClient" />

     </connectionStrings>

3. appSettings配置節:

appSettings配置節為整個程式的配置,如果是對目前使用者的配置,請使用userSettings配置節,其格式與以下配置書寫要求一樣。

<!--進銷存管理系統初始化需要的參數-->

     <appSettings>

         <clear />

         <addkey="userName"value="" />

         <addkey="password"value="" />

         <addkey="Department"value="" />

         <addkey="returnValue"value="" />

         <addkey="pwdPattern"value="" />

         <addkey="userPattern"value="" />

</appSettings>

4.讀取與更新app.config

請注意:要使用以下的代碼通路app.config檔案,除添加引用System.Configuration外,還必須在項目添加對System.Configuration.dll的引用。

4.1 讀取connectionStrings配置節

///<summary>

///依據連接配接串名字connectionName傳回資料連接配接字元串

///</summary>

///<param name="connectionName"></param>

///<returns></returns>

private static string GetConnectionStringsConfig(string connectionName)

{

string connectionString =

        ConfigurationManager.ConnectionStrings[connectionName].ConnectionString.ToString();

    Console.WriteLine(connectionString);

    return connectionString;

}

4.2 更新connectionStrings配置節

///<summary>

///更新連接配接字元串

///</summary>

///<param name="newName">連接配接字元串名稱</param>

///<param name="newConString">連接配接字元串内容</param>

///<param name="newProviderName">資料提供程式名稱</param>

private static void UpdateConnectionStringsConfig(string newName, string newConString, string newProviderName)

{

    bool isModified = false;    //記錄該連接配接串是否已經存在

    //如果要更改的連接配接串已經存在

    if (ConfigurationManager.ConnectionStrings[newName] != null)

    {

        isModified = true;

    }

    //建立一個連接配接字元串執行個體

    ConnectionStringSettings mySettings =

        new ConnectionStringSettings(newName, newConString, newProviderName);

    // 打開可執行的配置檔案*.exe.config

    Configuration config =

        ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

    // 如果連接配接串已存在,首先删除它

    if (isModified)

    {

        config.ConnectionStrings.ConnectionStrings.Remove(newName);

    }

    // 将新的連接配接串添加到配置檔案中.

    config.ConnectionStrings.ConnectionStrings.Add(mySettings);

    // 儲存對配置檔案所作的更改

    config.Save(ConfigurationSaveMode.Modified);

    // 強制重新載入配置檔案的ConnectionStrings配置節

    ConfigurationManager.RefreshSection("ConnectionStrings");

}

4.3 讀取appStrings配置節

///<summary>

///傳回*.exe.config檔案中appSettings配置節的value項

///</summary>

///<param name="strKey"></param>

///<returns></returns>

private static string GetAppConfig(string strKey)

{

    foreach (string key in ConfigurationManager.AppSettings)

    {

        if (key == strKey)

        {

            return ConfigurationManager.AppSettings[strKey];

        }

    }

    return null;

}

4.4 更新connectionStrings配置節

///<summary>

///在*.exe.config檔案中appSettings配置節增加一對鍵、值對

///</summary>

///<param name="newKey"></param>

///<param name="newValue"></param>

private static void UpdateAppConfig(string newKey, string newValue)

{

    bool isModified = false;   

    foreach (string key in ConfigurationManager.AppSettings)

    {

       if(key==newKey)

        {   

            isModified = true;

        }

    }

    // Open App.Config of executable

    Configuration config =

        ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

    // You need to remove the old settings object before you can replace it

    if (isModified)

    {

        config.AppSettings.Settings.Remove(newKey);

    }   

    // Add an Application Setting.

    config.AppSettings.Settings.Add(newKey,newValue);  

    // Save the changes in App.config file.

    config.Save(ConfigurationSaveMode.Modified);

    // Force a reload of a changed section.

    ConfigurationManager.RefreshSection("appSettings");

}