查看: 1018|回复: 0
打印 上一主题 下一主题

[其他] ini文件加载解析类

[复制链接]

100

主题

3

听众

7683

积分

高级设计师

Rank: 6Rank: 6

纳金币
2378
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2015-9-9 11:30:48 |只看该作者 |倒序浏览
服务器端开发的时候经常会用到一些配置,比如说ip呀,端口呀,以及一些需要经常变更的变量不想写死在代码里,这时候大家一般都会想到配置文件,用VS创建的C#项目会自带一个app.config,用这个xml来做配置也是一个不错的选择,不过个人不太喜欢xml,所以还是选择了用ini文件来存储一些配置。

先上代码,代码其实很简单

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
  
public class AIniLoader
{
        private Dictionary<string, string> dIniNodes = new Dictionary<string, string>();
        private Dictionary<string, string> dDefaultValues = new Dictionary<string, string>();
        public void OnSetDefaultValue(string key, int value)
        {
                OnSetDefaultValue(key, value.ToString());
        }
        public void OnSetDefaultValue(string key, string value)
        {
                if (dDefaultValues.ContainsKey(key))
                {
                        dDefaultValues[key] = value;
                }
                else
                {
                        dDefaultValues.Add(key, value);
                }
        }
        private string fileName = "";
        public void LoadIniFile(string sFileName)
        {
                fileName = sFileName;
  
                if (!File.Exists(sFileName))
                {
                        File.Create(sFileName).Close();
                }
                else
                {
                        StreamReader mysr = new StreamReader(sFileName, System.Text.Encoding.UTF8);
                        string strline = "";
                        while ((strline = mysr.ReadLine()) != null)
                        {
                                string[] astr = strline.Split(new char[] { '=' }, 2);
                                if (astr.Length != 2)
                                {
                                        Console.WriteLine("Invalid line " + strline);
                                        continue;
                                }
  
                                dIniNodes.Add(astr[0], astr[1]);
                        }
                        mysr.Close();
                }
        }
  
        public int OnGetIntValue(string sNodeName)
        {
                return typeParser.intParse(OnGetValue(sNodeName));
        }
        public void OnSetValue(string sNodeName, string sValue)
        {
                if (dIniNodes.ContainsKey(sNodeName))
                {
                        dIniNodes[sNodeName] = sValue;
                }
                else
                {
                        dIniNodes.Add(sNodeName, sValue);
                }
        }
        public string OnGetValue(string sNodeName)
        {
                if (!dIniNodes.ContainsKey(sNodeName))
                {
                        if (dDefaultValues.ContainsKey(sNodeName))
                        {
                                return dDefaultValues[sNodeName];
                        }
                        return "";
                }
                return dIniNodes[sNodeName];
        }
  
        public void OnSaveBack()
        {
                string shistory = "";
                foreach (string str in dIniNodes.Keys)
                {
                        shistory += str + "=" + dIniNodes[str] + "\n";
                }
                foreach (string str in dDefaultValues.Keys)
                {
                        if (dIniNodes.ContainsKey(str))
                        {
                                continue;
                        }
                        shistory += str + "=" + dDefaultValues[str] + "\n";
                }
                StreamWriter sw = new StreamWriter(fileName);
                sw.Write(shistory);
                sw.Close();
        }
}


使用的时候先new一个AIniLoader的实例,然后调用LoadIniFile()方法,传入ini文件的路径。

例:
AIniLoader iniLoader = new AIniLoader();
iniLoader.LoadIniFile("Server.ini");
string ip = iniLoader.OnGetValue("serverIP");
int port = iniLoader.OnGetIntValue("serverPort");




ini文件中的数据是这样的格式:
serverIP=127.0.0.1
serverPort=999






分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-15 00:51 , Processed in 0.097772 second(s), 27 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部