diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs b/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs new file mode 100644 index 0000000..8ece64f --- /dev/null +++ b/net.nutcore.aliddns/net.nutcore.aliddns/AppConfigHelper.cs @@ -0,0 +1,140 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml; + +namespace net.nutcore.aliddns +{ + public class AppConfigHelper + { + public AppConfigHelper(String configFilePath) + { + if (!File.Exists(configFilePath)) + { + + } + System.AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", configFilePath); + } + public static string GetValueByKey(string key) + { + ConfigurationManager.RefreshSection("appSettings"); + return ConfigurationManager.AppSettings[key]; + } + public static void ModifyAppSettings(string strKey, string value) + { + var doc = new XmlDocument(); + //获得配置文件的全路径 + var strFileName = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile; + doc.Load(strFileName); + + //找出名称为“add”的所有元素 + var nodes = doc.GetElementsByTagName("add"); + for (int i = 0; i < nodes.Count; i++) + { + //获得将当前元素的key属性 + var xmlAttributeCollection = nodes[i].Attributes; + if (xmlAttributeCollection != null) + { + var att = xmlAttributeCollection["key"]; + if (att == null) continue; + //根据元素的第一个属性来判断当前的元素是不是目标元素 + if (att.Value != strKey) continue; + //对目标元素中的第二个属性赋值 + att = xmlAttributeCollection["value"]; + att.Value = value; + } + break; + } + //保存上面的修改 + doc.Save(strFileName); + ConfigurationManager.RefreshSection("appSettings"); + } + static class ConfigurationUtil + { + public static void Synchronize() where T : SettingsBase + { + Type type = typeof(T); + System.Reflection.FieldInfo fieldInfo = type.GetField("defaultInstance", System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic); + + SettingsBase newInstance = global::System.Configuration.ApplicationSettingsBase.Synchronized(Activator.CreateInstance()); + + fieldInfo.SetValue(null, newInstance); + + } + public static System.Configuration.Configuration OpenConfiguration(string fileName) + { + string extention = Path.GetExtension(fileName); + + string file = fileName.Substring(0, fileName.Length - extention.Length); + bool createproxyFile = false; + if (!File.Exists(file)) + { + createproxyFile = true; + File.CreateText(file).Dispose(); + } + if (!File.Exists(fileName)) + { + File.WriteAllText(fileName, "", Encoding.UTF8); + } + System.Configuration.Configuration config = System.Configuration.ConfigurationManager.OpenExeConfiguration(file); + if (createproxyFile) + { + File.Delete(file); + } + return config; + } + public static ConfigurationSectionGroup CreateApplicationSettingsGroup(System.Configuration.Configuration config) + { + ConfigurationSectionGroup appsg = config.RootSectionGroup.SectionGroups.Get("applicationSettings"); + if (appsg == null) + { + appsg = new ApplicationSettingsGroup(); + //appsg.Type = typeof(ApplicationSettingsGroup).AssemblyQualifiedName; + config.RootSectionGroup.SectionGroups.Add("applicationSettings", appsg); + //创建节点 + } + return appsg; + + } + + public static void WriteSettingElement(Configuration config, ConfigurationSectionGroup sectionGroup, SettingsSerializeAs sas, string name, string value, string namespaceclass) + { + + ConfigurationSection sec = sectionGroup.Sections.Get(namespaceclass); + + System.Configuration.ClientSettingsSection clisec = sec as ClientSettingsSection; + if (clisec == null) + { + //创建节 + clisec = new ClientSettingsSection(); + sectionGroup.Sections.Add(namespaceclass, clisec); + } + + SettingElement secEle = clisec.Settings.Get(name); + if (secEle == null) + { + secEle = new SettingElement(name, sas); + clisec.Settings.Add(secEle); + + } + secEle.Value.ValueXml = new XmlDocument().CreateElement("value"); + if (sas == SettingsSerializeAs.Xml) + { + + XmlDocument xmdoc = new XmlDocument(); + xmdoc.LoadXml(value); + secEle.Value.ValueXml.InnerXml = xmdoc.DocumentElement.OuterXml; + + } + else + { + secEle.Value.ValueXml.InnerText = value; + } + } + } + } +} diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs b/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs index fce7673..b17eaf7 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs +++ b/net.nutcore.aliddns/net.nutcore.aliddns/Form_main.cs @@ -21,7 +21,11 @@ namespace net.nutcore.aliddns static DefaultAcsClient client; //初始化ngrok操作类 private Ngrok ngrok = new Ngrok(); - + //指定配置文件为aliddns_config.config + static String configFilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "aliddns_config.cfg"); + //获得程序默认配置文件*.exe.config(或*.vhost.exe.config)的全路径 + //static String configFilePath = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile; + private AppConfigHelper cfg = new AppConfigHelper(configFilePath); public mainForm() { InitializeComponent(); @@ -31,10 +35,6 @@ namespace net.nutcore.aliddns private void mainForm_Load(object sender, EventArgs e) { - //手工指定程序配置文件,如果不手工设定,默认是程序名称.exe.config - System.AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", System.IO.Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "aliddns_config.config")); - string s = System.Configuration.ConfigurationManager.AppSettings["name"]; - MessageBox.Show(s); //获取当前用户名和计算机名并写入日志 textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "计算机名: " + System.Environment.UserDomainName + "\r\n"); textBox_log.AppendText(System.DateTime.Now.ToString() + " " + "当前用户: " + System.Environment.UserName + "\r\n"); diff --git a/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj b/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj index a91879d..106f03e 100644 --- a/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj +++ b/net.nutcore.aliddns/net.nutcore.aliddns/net.nutcore.aliddns.csproj @@ -88,6 +88,7 @@ + Form