diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs b/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs
index b5a1a36..c8c3ef7 100644
--- a/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs
+++ b/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs
@@ -14,13 +14,13 @@ namespace net.nutcore.aliddns
internal class AppConfigHelper
{
System.Configuration.Configuration configFile = null;
- private static readonly string fileName = "aliddns_config1.xml";
+ private static readonly string configFileName = "aliddns_config1.xml";
+ private static readonly string configFilePath = System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, configFileName);
///
/// 构造函数
///
public AppConfigHelper()
{
- string configFilePath = System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, fileName);
try
{
if (!File.Exists(configFilePath))
@@ -51,6 +51,7 @@ namespace net.nutcore.aliddns
new XElement("supportedRuntime", new XAttribute("version", "v4.0"), new XAttribute("sku", ".NETFramework,Version=v4.5.2"))
),
new XElement("appSettings",
+ new XElement("add", new XAttribute("key", "AliDDNS Version"), new XAttribute("value", System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString())),
new XElement("add", new XAttribute("key", "AccessKeyID"), new XAttribute("value", "")),
new XElement("add", new XAttribute("key", "AccessKeySecret"), new XAttribute("value", "")),
new XElement("add", new XAttribute("key", "RecordID"), new XAttribute("value", "")),
@@ -76,10 +77,15 @@ namespace net.nutcore.aliddns
xw.Dispose();
//xw.Flush();
//xw.Close();
+ }
+ else
+ {
+
}
ExeConfigurationFileMap map = new ExeConfigurationFileMap();
map.ExeConfigFilename = configFilePath;
configFile = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
+ GetAllAppSettings();
}
catch(Exception)
{
@@ -88,7 +94,7 @@ namespace net.nutcore.aliddns
}
///
- /// //添加键值
+ /// 在下添加键和值
///
///
///
@@ -99,20 +105,20 @@ namespace net.nutcore.aliddns
}
///
- /// //修改键值
+ /// 修改下指定键的值
///
///
///
public void SaveAppSetting(string key, string value)
{
+ //在保存key值时必须先删除它,否则改key的值将出现两个,例如:value="oldvalue, newvalue"
configFile.AppSettings.Settings.Remove(key);
configFile.AppSettings.Settings.Add(key, value);
-
configFile.Save();
}
///
- /// //获得键值
+ /// 获取下指定键的值
///
///
///
@@ -122,7 +128,49 @@ namespace net.nutcore.aliddns
}
///
- /// //移除键值
+ /// 获取下所有键和值
+ ///
+ public ArrayList GetAllAppSettings()
+ {
+ try
+ {
+ ArrayList list = new ArrayList() ;
+ //var appSettings = ConfigurationManager.AppSettings;
+
+ if (configFile.AppSettings.Settings.Count == 0)
+ {
+ Console.WriteLine("AppSettings is empty.");
+ return null;
+ }
+ else
+ {
+ /*
+ foreach (var key in configFile.AppSettings.Settings.AllKeys)
+ {
+ //list.Add(configFile.AppSettings.Settings[key].Value);
+ Console.WriteLine("Key: {0} Value: {1}", key, configFile.AppSettings.Settings[key].Value);
+ }*/
+ list.Add(configFile.AppSettings.Settings.AllKeys);
+ foreach (var key in list)
+ Console.WriteLine(key.ToString());
+ /*
+ for (int i = 0; i < list.Count; i++)
+ {
+ Console.WriteLine(list[i].ToString());
+ }*/
+
+ return list;
+ }
+ }
+ catch (ConfigurationErrorsException)
+ {
+ Console.WriteLine("Error reading app settings");
+ return null;
+ }
+ }
+
+ ///
+ /// 移除下指定键
///
///
public void DelAppSetting(string key)
@@ -131,11 +179,16 @@ namespace net.nutcore.aliddns
configFile.Save();
}
+ ///
+ /// 读取XML配置文件指定元素(Elements)下的值
+ ///
+ ///
+ ///
public ArrayList GetXmlElements(string strElem)
{
ArrayList list = new ArrayList();
XmlDocument xmlDoc = new XmlDocument();
- xmlDoc.Load(System.Windows.Forms.Application.ExecutablePath + ".config");
+ xmlDoc.Load(configFilePath);
XmlNodeList listNode = xmlDoc.SelectNodes(strElem);
foreach (XmlElement el in listNode)
{
@@ -171,33 +224,6 @@ namespace net.nutcore.aliddns
//configFile = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
}
- ///
- /// 读取配置文件所有内容
- ///
- static void ReadAllSettings()
- {
- try
- {
- var appSettings = ConfigurationManager.AppSettings;
-
- if (appSettings.Count == 0)
- {
- Console.WriteLine("AppSettings is empty.");
- }
- else
- {
- foreach (var key in appSettings.AllKeys)
- {
- Console.WriteLine("Key: {0} Value: {1}", key, appSettings[key]);
- }
- }
- }
- catch (ConfigurationErrorsException)
- {
- Console.WriteLine("Error reading app settings");
- }
- }
-
///
/// 判断appSettings中是否有此项键名
///