asp.Netプロファイルの読み取り方法

15332 ワード

方法1:
 
  
System.Collections.Specialized.NameValueCollection nvc = (System.Collections.Specialized.NameValueCollection)
System.Configuration.ConfigurationManager.GetSection(sectionName);

string keyValue = nvc.GetValues(keyName)[0].ToString();
方法2:

   System.Web.Configuration.WebConfigurationManager.AppSettings[keyName].ToString(); 
 

以下の記事を参考に
C#でプロファイル1を読み込む方法1.プロファイルの概要:
アプリケーションプロファイルは標準のXMLファイルで、XMLタグと属性は大文字と小文字を区別します.必要に応じて変更できます.開発者は、アプリケーションを再コンパイルすることなく、プロファイルを使用して設定を変更できます.プロファイルのルートノードはconfigurationです.私たちがよくアクセスしているのはappSettingsです.Net事前定義構成セクション.私たちがよく使用するプロファイルのアーキテクチャは、次のような形式です.まず大体印象がありますが、後の例を通して比較的はっきりした認識があります.次の「コンフィギュレーション・セクション」は、XMLを構成するノードとして理解できます.
一般的なプロファイル・モード:
 
  

// ,
//
  //
  
//
//
//

2.appSettingsセクションのみのプロファイルおよびアクセス方法
次に、appSettingsセクションのみで最も一般的なアプリケーションプロファイルの例を示します.
 
  








このようなプロファイルの方法を見てみましょう.
string _connectionString=ConfigurationSettings.AppSettings["connectionstring"];
コンフィギュレーション設定クラスの静的プロパティAppSettingsを使用すると、プロファイル内のコンフィギュレーション情報を直接メソッドできます.この属性のタイプはNameValue Collectionです.
3.カスタムプロファイル
3.1カスタム構成セクション
コンフィギュレーション・セクションは、コンフィギュレーション・ファイルに2つのセクションに分けられます.1つはconfigSections>コンフィギュレーション・セクションでコンフィギュレーション・セクション(上のコンフィギュレーション・ファイル・モードの「」)を宣言することです.また、configSections>の後にコンフィギュレーション・セクション(上のコンフィギュレーション・ファイル・モードの「」)を設定することです.変数が先に宣言され、後で使用されるのと同じです.プロファイルを宣言する文は次のとおりです.
:新しい構成セクションを宣言すると、新しい構成セクションが作成されます.
name:カスタム構成セクションの名前.
type:カスタム構成セクションのタイプで、主にSystemを含む.Configuration.SingleTagSectionHandler、 System.Configuration.DictionarySectionHandler、 System.Configuration.NameValueSectionHandler.
異なるtypeは、コンフィギュレーション・セクションの設定方法が異なるだけでなく、最後にコンフィギュレーション・ファイルにアクセスする操作にも違いがあります.次に、この3つの異なるtypeを含むプロファイルの例を挙げます.
 
  
















我们对上面的自定义配置节进行说明。在声明部分使用
声明了一个配置节它的名字叫 Test1,类型为SingleTagSectionHandler。在设置配置节部分使用 设置了一个配置节,它的第一个设置的值是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

上記のコードから,タイプによってGetConfigによって返されるタイプが異なり,構成内容を具体的に得る方法も異なることが分かる.セクションハンドラの構成
戻りタイプ
 
  
SingleTagSectionHandler
Systems.Collections.IDictionary
DictionarySectionHandler
Systems.Collections.IDictionary
NameValueSectionHandler
Systems.Collections.Specialized.NameValueCollection

3.2カスタム構成セクショングループ
コンフィギュレーション・セクション・グループは、要素を使用して、同じコンフィギュレーション・セクションを同じグループに分割します.コンフィギュレーション・セクション・グループ宣言セクションでは、コンフィギュレーション・セクションの要素を作成し、コンフィギュレーション・セクション・グループを要素に宣言し、そのグループに属するセクションを要素に配置します.コンフィギュレーション・セクション・グループを含むコンフィギュレーション・ファイルの例を次に示します.
 
  














下面是访问这个配置节组的代码:
NameValueCollection nc=(NameValueCollection)ConfigurationSettings.GetConfig("TestGroup/Test");
MessageBox.Show(nc.AllKeys[0].ToString()+" "+nc["Hello"]); //输出Hello World
C# 解析配置文件内容 System.Configuration
1. 创建配置节类
必须创建继承自ConfigurationSection的对象才能进行配置数据读写操作,ConfigurationSection提供了索引器用来获取和设置配置数据,需要注意的是拥有ConfigurationProperty特性的属性才会被存储,并且名称要保持大小写完全一致,如下面的代码中,所有的"id"必须保持一样。
 
  
class ConfigSectionData : ConfigurationSection
{
[ConfigurationProperty("id")]
public int Id
{
get { return (int)this["id"]; }
set { this["id"] = value; }
}
[ConfigurationProperty("time")]
public DateTime Time
{
get { return (DateTime)this["time"]; }
set { this["time"] = value; }
}
}

2.プロファイル操作オブジェクトの作成
 
  
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
config.Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);

上記の例は操作appである.configは、ルートノード(configuration)の下に「add」という名前の構成データを書き込む.
 
  






需要注意的 VS2005 在IDE模式下会将信息写入 *.vshost.exe.config,并且在程序关闭时覆写该文件,因此您可能看不到您写入的配置数据,只要在资源管理其中执行 *.exe 文件,您就可以在 *.exe.config 文件中看到结果了。
如果我们需要操作非缺省配置文件,可以使用ExeConfigurationFileMap对象。
 
  
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
config.Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);

ルートノードの下に構成データを書き込みたくない場合は、ConfigurationSectionGroupオブジェクトを使用します.
 
  
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
config.SectionGroups.Add("group1", new ConfigurationSectionGroup());
config.SectionGroups["group1"].Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);

次に、生成されたプロファイルを示します.
 
  







3.プロファイルの読み込み
 
  
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = config.SectionGroups["group1"].Sections["add"] as ConfigSectionData;
//ConfigSectionData data = config.Sections["add"] as ConfigSectionData; //
if (data != null)
{
Console.WriteLine(data.Id);
Console.WriteLine(data.Time);
}

4.プロファイルの書き込み
コンフィギュレーション設定グループとコンフィギュレーション設定を書き込む前に、同じ名前の構成がすでに存在するかどうかを判断します.そうしないと、書き込みに失敗します.
また、コンフィギュレーションファイルが他のコンフィギュレーションオブジェクトによって変更された場合、保存に失敗し、例外が放出されます.Singletonモードを推奨します.
 
  
ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 2000;
data.Time = DateTime.Now;
ConfigurationSectionGroup group1 = config.SectionGroups["group1"];
if (group1 == null)
config.SectionGroups.Add("group1", new ConfigurationSectionGroup());
ConfigurationSection data = group1.Sections["add"] as config;
if (add == null)
config.SectionGroups["group1"].Sections.Add("add", data);
else
{
group1.Sections.Remove("add");
group1.Sections.Add("add", data);
// , 。
//ConfigSectionData configData = add as ConfigSectionData;
//configData.Id = data.Id;
//configData.Time = data.Time;
}
config.Save(ConfigurationSaveMode.Minimal);

5.構成セクションの削除
 
  
ConfigurationSectionGroup
config.SectionGroups.Remove("group1");
//config.SectionGroups.Clear();
config.Save(ConfigurationSaveMode.Minimal);
ConfigurationSection
config.Sections.Remove("add1");
//config.Sections.Clear();
if (config.SectionGroups["group1"] != null)
{
config.SectionGroups["group1"].Sections.Remove("add2");
//config.SectionGroups["group1"].Sections.Clear();
}
config.Save(ConfigurationSaveMode.Minimal);

6.その他コンフィギュレーションマネージャを使用可能OpenMachineConfiguration()はMachineを操作する.configファイル.
あるいはSystemを用いる.Web.コンフィギュレーションネームスペースのWebConfigurationManagerクラスでASPを操作する.Netプロファイル.
コンフィギュレーションマネージャでは、AppSettings、ConnectionStrings、GetSection()などの便利な操作も可能です.
7.カスタムクラスを使用してカスタムクラスを使用できますが、変換器を定義する必要があります.
 
  
using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Globalization;
using System.ComponentModel;
//
class CustomData
{
public CustomData(string s)
{
this.s = s;
}
private string s;
public string S
{
get { return s; }
set { s = value; }
}
}
// ( )
class CustomConvert : ConfigurationConverterBase
{
public override bool CanConvertFrom(ITypeDescriptorContext ctx, Type type)
{
return (type == typeof(string));
}
public override object ConvertTo(ITypeDescriptorContext ctx, CultureInfo ci, object value, Type type)
{
return (value as CustomData).S;
}
public override object ConvertFrom(ITypeDescriptorContext ctx, CultureInfo ci, object data)
{
return new CustomData((string)data);;
}
}
class ConfigSectionData : ConfigurationSection
{
[ConfigurationProperty("id")]
public int Id
{
get { return (int)this["id"]; }
set { this["id"] = value; }
}
[ConfigurationProperty("time")]
public DateTime Time
{
get { return (DateTime)this["time"]; }
set { this["time"] = value; }
}
[ConfigurationProperty("custom")]
[TypeConverter(typeof(CustomConvert))] //
public CustomData Custom
{
get { return (CustomData)this["custom"]; }
set { this["custom"] = value; }
}
}
public class Program
{
static void Main(string[] args)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
data.Custom = new CustomData("abcdefg...");
config.Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);
//
ConfigSectionData configData = (ConfigSectionData)config.Sections["add"];
Console.WriteLine(configData.Custom.S);
}
}

保存されたプロファイル








より詳細な情報はMSDNのSystemについて見ることができる.Configuration.ConfigurationConverterBaseの説明.