c#读写ini配置文件示例

虽然c#里都是添加app.config 并且访问也很方便 ,有时候还是不习惯用他。那么我们来做个仿C++下的那种ini配置文件读写吧

其他人写的都是调用非托管kernel32.dll。我也用过 但是感觉兼容性有点不好 有时候会出现编码错误,毕竟一个是以前的系统一个是现在的系统。咱来写一个纯C#的ini格式配置文件读取,其实就是文本文件读写啦。但是我们要做的绝不仅仅是这样 是为了访问操作的方便 更是为了以后的使用。

都知道ini格式的配置文件里各个配置项 其实就是一行一行的文本 key跟value 用等号隔开。
像这样:
grade=5 。
各个配置项又进行分组 同类型的放到一起 称之为section 以中括号([])区分。
像这样:
[contact]
qq=410910748
website=assassinx.cnblogs.com
[score]
math=85
Chinese=90
geographic=60
各个配置项的key在section内不可重复。

在这里我们为了方便 去掉section的概念 ,实际上也用不怎么到。那么这样一来就可以把个个配置项理解成一个dictionary结构,方便我们存取等操作 。至于为什么一定要使用dictionary 因为在测试时我发现存取过程中他不会打乱元素的存放顺序 晕 就这样啊。 我们要做到就是根据key去取value。还有就是需要注意到我们有时候需要在配置文件里写注释怎么办呢?就是以分号(;)开头的行。这个问题我们可以在程序里为他初始化特殊的key+序号的形式 ,写入的时候也同样的进行判断。

这整个过程就是:
程序开始时遍历所有行 如果以分号(;)开头则存储此行不作为配置解释,如果不是 则解释此行 并放到dictionary集合里去。访问时 根据key获取value 就这么简单。注意注释行的处理  还有更改配置存回去行的先后顺序必须保持原样。

好了开工吧:

public class Config
{
    public Dictionary<string, string> configData;
    string fullFileName;
    public Config(string _fileName)
    {
        configData = new Dictionary<string,string>();
        fullFileName = Application.StartupPath + @"\" + _fileName;
        bool hasCfgFile =File.Exists(Application.StartupPath + @"\" + _fileName);
        if (hasCfgFile == false)
        {
            StreamWriter writer = new StreamWriter(File.Create(Application.StartupPath + @"\" + _fileName), Encoding.Default);
            writer.Close();
        }
        StreamReader reader = new StreamReader(Application.StartupPath + @"\" + _fileName, Encoding.Default);
        string line;
        int indx = 0;
        while ((line = reader.ReadLine()) != null)
        {
            if (line.StartsWith(";") || string.IsNullOrEmpty(line))
                configData.Add(";" + indx++, line);
            else
            {
                string[] key_value = line.Split(‘=‘);
                if (key_value.Length >= 2)
                    configData.Add(key_value[0], key_value[1]);
                else
                    configData.Add(";" + indx++, line);
            }
        }
        reader.Close();
    }
    public string get(string key)
    {
        if (configData.Count <= 0)
            return null;
        else if(configData.ContainsKey(key))
            return configData[key].ToString();
        else
            return null;
    }
    public void set(string key, string value)
    {
        if (configData.ContainsKey(key))
            configData[key] = value;
        else
            configData.Add(key, value);
    }
    public void save()
    {
        StreamWriter writer = new StreamWriter(fullFileName,false,Encoding.Default);
        IDictionaryEnumerator enu = configData.GetEnumerator();
        while (enu.MoveNext())
        {
            if (enu.Key.ToString().StartsWith(";"))
                writer.WriteLine(enu.Value);
            else
                writer.WriteLine(enu.Key + "=" + enu.Value);
        }
        writer.Close();
    }
}
时间: 2024-10-11 05:15:23

c#读写ini配置文件示例的相关文章

引用“kernel32”读写ini配置文件

引用"kernel32"读写ini配置文件 unity ini kernel32 配置文件 引用"kernel32"读写ini配置文件 OverView kernel32.dll是Windows中非常重要的32位动态链接库文件,属于内核级文件.它控制着系统的内存管理.数据的输入输出操作和中断处理,当Windows启动时,kernel32.dll就驻留在内存中特定的写保护区域,使别的程序无法占用这个内存区域. standardshader与toonshader比较:

自己写的 读写 ini 配置文件类

/// <summary> /// 不调用系统API 读写 ini 配置文件 /// </summary> public class RW_ini { #region ========ini 读写======== // 首次调用 RWini 时需要初始化此参数 public static string pathIni; // 记录错误信息 与 WriteLog 一起使用 public static string pathErr; public static string ReadI

WritePrivateProfileString等读写.ini配置文件

配置文件中经常用到ini文件,在VC中其函数分别为: 写入.ini文件: BOOL WritePrivateProfileString( LPCTSTR lpAppName, // INI文件中的一个字段名[节名]可以有很多个节名 LPCTSTR lpKeyName, // lpAppName 下的一个键名,也就是里面具体的变量名 LPCTSTR lpString, // 键值,也就是数据 LPCTSTR lpFileName // INI文件的路径 ); 读取.ini文件: DWORD Get

C/C++ 关于如何读写ini配置文件 (小结)

我们可能经常用到配置文件ini文件来获取或者保存参数信息,在VC中其函数中主要用到的有: 读取 读取字符   DWORD GetPrivateProfileString(  LPCTSTR lpAppName,        // INI文件中的一个字段名[节名]可以有很多个节名   LPCTSTR lpKeyName,        // lpAppName 下的一个键名,也就是里面具体的变量名   LPCTSTR lpDefault,        // 如果lpReturnedString

在VC中读写ini配置文件

配置文件中经常用到ini文件,在VC中其函数分别为: 写入.ini文件:bool WritePrivateProfileString(LPCTSTR lpAppName,LPCTSTR lpKeyName,LPCTSTR lpString,LPCTSTR lpFileName); 读取.ini文件:DWORD GetPrivateProfileString(LPCTSTR lpAppName,LPCTSTR lpKeyName,LPCTSTR lpDefaut,LPSTR lpReturnedS

读写INI配置文件。

核心函数: 写入.ini文件:bool WritePrivateProfileString(LPCTSTR lpAppName,//INI文件中的一个字段名 LPCTSTR lpKeyName,//lpAppName 下的一个键名,也就是里面具体的变量名 LPCTSTR lpString,//是键值,也就是变量的值, 必须为LPCTSTR或CString类型 LPCTSTR lpFileName);//完整的INI文件路径名 读取.ini文件:DWORD GetPrivateProfileStr

JS通过ActiveX读写ini配置文件

1 String.prototype.trim = function(){ 2 return this.replace(/(^\s+)|(\s+$)/g, ''); 3 }; 4 5 IniConfig = function(iniFileName) { 6 this.iniFileName = iniFileName; 7 this._iniSecDictionary = new Array(); 8 this.fso = new ActiveXObject("Scripting.FileSy

C# 读写ini配置文件(.net/SQL技术交流群206656202 入群需注明博客园)

using System; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Text; namespace Souxuexiao.Cache { public static class IniConfig { static string ConfigurationFilePath; static IniConfig() { var Ass = Assembly

C++读写ini配置文件

在Windows的VC下 例如:在D:\test.ini文件中 [Font] name=宋体 size= 12pt color = RGB(255,0,0) 上面的=号两边可以加空格,也可以不加 用GetPrivateProfileInt()和GetPrivateProfileString() [section] key=string . . 获取integer UINT GetPrivateProfileInt( LPCTSTR lpAppName, // section name LPCTS