C#中处理读写Ini文件

时间:2022-08-30 18:12:39
1、C#读写ini文件其实并不是普通的文本文件,有自己的结构。由若干段落(SECTION)组成,在每个带括号的标题下面,是若干个以单个单词开头的关键字(KEYWORD)和一个等号,等号右边就是关键字的值(VALUE).例如:
   
   
  
 
 
  1. [Section1]  
  2.     KeyWord1 = Value1  
  3.     KeyWord2 = Value2  
  4.     ...  
  5. [Section2]  
  6.     KeyWord3 = Value3  
  7.     KeyWord4 = Value4 

2、C#读写ini文件最初的想法:C#命名空间中没有直接读写INI的类。
虽然C#中没有,但是在"kernel32.dll"这个文件中有Win32的API函数--WritePrivateProfileString()和GetPrivateProfileString()
C#读写ini文件实现之C#声明INI文件的写操作函数WritePrivateProfileString():
   
   
  
 
 
    • 参数说明:
      section:INI文件中的段落;
      key:INI文件中的关键字;
      val:INI文件中关键字的数值;
      filePath:INI文件的完整的路径和名称
  1. [DllImport( "kernel32" )]  
  2.  private static extern long WritePrivateProfileString (string section ,string key , string val   string filePath ) ; 


   
   
  
 
 
    参数说明:
    section:INI文件中的段落名称;
    key:INI文件中的关键字;
    def:无法读取时候时候的缺省数值;
    retVal:读取数值;
    size:数值的大小;
    filePath:INI文件的完整路径和名称。
  1. [DllImport("kernel32")]  
  2. private static extern int GetPrivateProfileString ( string section ,   string key , string def , StringBuilder retVal ,int size , string filePath ) ; 


下面是一个C#读写ini文件的类:
   
   
  
 
 
  1. public class INIClass  
  2. {  
  3.  public string inipath;  
  4.  [DllImport("kernel32")]  
  5.  private static extern long WritePrivateProfileString(string section,string key,string val,string filePath);  
  6.  [DllImport("kernel32")]  
  7.  private static extern int GetPrivateProfileString(string section,string key,string def,StringBuilder retVal,int size,string filePath);  
  8.  /// ﹤summary﹥  
  9.  /// 构造方法  
  10.  /// ﹤/summary﹥  
  11.  /// ﹤param name="INIPath"﹥文件路径﹤/param﹥  
  12.  public INIClass(string INIPath)  
  13.  {  
  14.   inipath = INIPath;  
  15.  }  
  16.  /// ﹤summary﹥  
  17.  /// 写入INI文件  
  18.  /// ﹤/summary﹥  
  19.  /// ﹤param name="Section"﹥项目名称(如 [TypeName] )﹤/param﹥  
  20.  /// ﹤param name="Key"﹥键﹤/param﹥  
  21.  /// ﹤param name="Value"﹥值﹤/param﹥  
  22.  public void IniWriteValue(string Section,string Key,string Value)  
  23.  {  
  24.   WritePrivateProfileString(Section,Key,Value,this.inipath);  
  25.  }  
  26.  /// ﹤summary﹥  
  27.  /// 读出INI文件  
  28.  /// ﹤/summary﹥  
  29.  /// ﹤param name="Section"﹥项目名称(如 [TypeName] )﹤/param﹥  
  30.  /// ﹤param name="Key"﹥键﹤/param﹥  
  31.  public string IniReadValue(string Section,string Key)  
  32.  {  
  33.   StringBuilder temp = new StringBuilder(500);  
  34.   int i = GetPrivateProfileString(Section,Key,"",temp,500,this.inipath);  
  35.   return temp.ToString();  
  36.  }  
  37.  /// ﹤summary﹥  
  38.  /// 验证文件是否存在  
  39.  /// ﹤/summary﹥  
  40.  /// ﹤returns﹥布尔值﹤/returns﹥  
  41.  public bool ExistINIFile()  
  42.  {  
  43.   return File.Exists(inipath);  
  44.  }  
C#读写ini文件的相关内容就向你介绍到这里,希望对你了解和学习C#读写ini文件有所帮助。
 
=================
C#读写INI文件 



       虽然微软早已经建议在WINDOWS中用注册表代替INI文件,但是在实际应用中,INI文件仍然有用武之地,尤其现在绿色软件的流行,越来越多的程序将自己的一些配置信息保存到了INI文件中。
       INI文件是文本文件,由若干节(section)组成,在每个带括号的标题下面,是若干个关键词(key)及其对应的值(Value)
  [Section]
  Key=Value
      
       VC中提供了API函数进行INI文件的读写操作,但是微软推出的C#编程语言中却没有相应的方法,下面是一个C# ini文件读写类,从网上收集的,很全,就是没有对section的改名功能,高手可以增加一个。
C#中处理读写Ini文件using System;
C#中处理读写Ini文件using System.IO;
C#中处理读写Ini文件using System.Runtime.InteropServices;
C#中处理读写Ini文件using System.Text;
C#中处理读写Ini文件using System.Collections;
C#中处理读写Ini文件using System.Collections.Specialized;
C#中处理读写Ini文件
C#中处理读写Ini文件namespace *sky {
C#中处理读写Ini文件  /**/
C#中处理读写Ini文件  /// <summary>
C#中处理读写Ini文件  
/// IniFiles的类
C#中处理读写Ini文件  
/// </summary>

C#中处理读写Ini文件  public class IniFiles
C#中处理读写Ini文件  {
C#中处理读写Ini文件    public string FileName; //INI文件名
C#中处理读写Ini文件    
//声明读写INI文件的API函数
C#中处理读写Ini文件
    [DllImport("kernel32")]
C#中处理读写Ini文件    private static extern bool WritePrivateProfileString(string section, string key, string val, string filePath);
C#中处理读写Ini文件    [DllImport("kernel32")]
C#中处理读写Ini文件    private static extern int GetPrivateProfileString(string section, string key, string def, byte[] retVal, int size, string filePath);
C#中处理读写Ini文件    //类的构造函数,传递INI文件名
C#中处理读写Ini文件
    public IniFiles(string AFileName)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      // 判断文件是否存在
C#中处理读写Ini文件
      FileInfo fileInfo = new FileInfo(AFileName);
C#中处理读写Ini文件      //Todo:搞清枚举的用法
C#中处理读写Ini文件
      if ((!fileInfo.Exists))
C#中处理读写Ini文件      //|| (FileAttributes.Directory in fileInfo.Attributes))
C#中处理读写Ini文件        
//文件不存在,建立文件
C#中处理读写Ini文件
        System.IO.StreamWriter sw = new System.IO.StreamWriter(AFileName, false, System.Text.Encoding.Default);
C#中处理读写Ini文件        try
C#中处理读写Ini文件        {
C#中处理读写Ini文件          sw.Write("#表格配置档案");
C#中处理读写Ini文件          sw.Close();
C#中处理读写Ini文件        }

C#中处理读写Ini文件
C#中处理读写Ini文件        catch
C#中处理读写Ini文件        {
C#中处理读写Ini文件          throw (new ApplicationException("Ini文件不存在"));
C#中处理读写Ini文件        }

C#中处理读写Ini文件      }

C#中处理读写Ini文件      //必须是完全路径,不能是相对路径
C#中处理读写Ini文件
      FileName = fileInfo.FullName;
C#中处理读写Ini文件    }

C#中处理读写Ini文件    //写INI文件
C#中处理读写Ini文件
    public void WriteString(string Section, string Ident, string Value)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      if (!WritePrivateProfileString(Section, Ident, Value, FileName))
C#中处理读写Ini文件      {
C#中处理读写Ini文件 
C#中处理读写Ini文件        throw (new ApplicationException("写Ini文件出错"));
C#中处理读写Ini文件      }

C#中处理读写Ini文件    }

C#中处理读写Ini文件    //读取INI文件指定
C#中处理读写Ini文件
    public string ReadString(string Section, string Ident, string Default)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      Byte[] Buffer = new Byte[65535];
C#中处理读写Ini文件      int bufLen = GetPrivateProfileString(Section, Ident, Default, Buffer, Buffer.GetUpperBound(0), FileName);
C#中处理读写Ini文件      //必须设定0(系统默认的代码页)的编码方式,否则无法支持中文
C#中处理读写Ini文件
      string s = Encoding.GetEncoding(0).GetString(Buffer);
C#中处理读写Ini文件      s = s.Substring(0, bufLen);
C#中处理读写Ini文件      return s.Trim();
C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    //读整数
C#中处理读写Ini文件
    public int ReadInteger(string Section, string Ident, int Default)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      string intStr = ReadString(Section, Ident, Convert.ToString(Default));
C#中处理读写Ini文件      try
C#中处理读写Ini文件      {
C#中处理读写Ini文件        return Convert.ToInt32(intStr);
C#中处理读写Ini文件
C#中处理读写Ini文件      }

C#中处理读写Ini文件      catch (Exception ex)
C#中处理读写Ini文件      {
C#中处理读写Ini文件        Console.WriteLine(ex.Message);
C#中处理读写Ini文件        return Default;
C#中处理读写Ini文件      }

C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    //写整数
C#中处理读写Ini文件
    public void WriteInteger(string Section, string Ident, int Value)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      WriteString(Section, Ident, Value.ToString());
C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    //读布尔
C#中处理读写Ini文件
    public bool ReadBool(string Section, string Ident, bool Default)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      try
C#中处理读写Ini文件      {
C#中处理读写Ini文件        return Convert.ToBoolean(ReadString(Section, Ident, Convert.ToString(Default)));
C#中处理读写Ini文件      }

C#中处理读写Ini文件      catch (Exception ex)
C#中处理读写Ini文件      {
C#中处理读写Ini文件        Console.WriteLine(ex.Message);
C#中处理读写Ini文件        return Default;
C#中处理读写Ini文件      }

C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    //写Bool
C#中处理读写Ini文件
    public void WriteBool(string Section, string Ident, bool Value)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      WriteString(Section, Ident, Convert.ToString(Value));
C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    //从Ini文件中,将指定的Section名称中的所有Ident添加到列表中
C#中处理读写Ini文件
    public void ReadSection(string Section, StringCollection Idents)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      Byte[] Buffer = new Byte[16384];
C#中处理读写Ini文件      //Idents.Clear();
C#中处理读写Ini文件

C#中处理读写Ini文件      int bufLen = GetPrivateProfileString(Section, nullnull, Buffer, Buffer.GetUpperBound(0),
C#中处理读写Ini文件       FileName);
C#中处理读写Ini文件      //对Section进行解析
C#中处理读写Ini文件
      GetStringsFromBuffer(Buffer, bufLen, Idents);
C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    private void GetStringsFromBuffer(Byte[] Buffer, int bufLen, StringCollection Strings)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      Strings.Clear();
C#中处理读写Ini文件      if (bufLen != 0)
C#中处理读写Ini文件      {
C#中处理读写Ini文件        int start = 0;
C#中处理读写Ini文件        for (int i = 0; i < bufLen; i++)
C#中处理读写Ini文件        {
C#中处理读写Ini文件          if ((Buffer[i] == 0) && ((i - start) > 0))
C#中处理读写Ini文件          {
C#中处理读写Ini文件            String s = Encoding.GetEncoding(0).GetString(Buffer, start, i - start);
C#中处理读写Ini文件            Strings.Add(s);
C#中处理读写Ini文件            start = i + 1;
C#中处理读写Ini文件          }

C#中处理读写Ini文件        }

C#中处理读写Ini文件      }

C#中处理读写Ini文件    }

C#中处理读写Ini文件    //从Ini文件中,读取所有的Sections的名称
C#中处理读写Ini文件
    public void ReadSections(StringCollection SectionList)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      //Note:必须得用Bytes来实现,StringBuilder只能取到第一个Section
C#中处理读写Ini文件
      byte[] Buffer = new byte[65535];
C#中处理读写Ini文件      int bufLen = 0;
C#中处理读写Ini文件      bufLen = GetPrivateProfileString(nullnullnull, Buffer,
C#中处理读写Ini文件       Buffer.GetUpperBound(0), FileName);
C#中处理读写Ini文件      GetStringsFromBuffer(Buffer, bufLen, SectionList);
C#中处理读写Ini文件    }

C#中处理读写Ini文件    //读取指定的Section的所有Value到列表中
C#中处理读写Ini文件
    public void ReadSectionValues(string Section, NameValueCollection Values)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      StringCollection KeyList = new StringCollection();
C#中处理读写Ini文件      ReadSection(Section, KeyList);
C#中处理读写Ini文件      Values.Clear();
C#中处理读写Ini文件      foreach (string key in KeyList)
C#中处理读写Ini文件      {
C#中处理读写Ini文件        Values.Add(key, ReadString(Section, key, ""));
C#中处理读写Ini文件  
C#中处理读写Ini文件      }

C#中处理读写Ini文件    }

C#中处理读写Ini文件    ////读取指定的Section的所有Value到列表中,
C#中处理读写Ini文件    //public void ReadSectionValues(string Section, NameValueCollection Values,char splitString)
C#中处理读写Ini文件    
//{  string sectionValue;
C#中处理读写Ini文件    
//  string[] sectionValueSplit;
C#中处理读写Ini文件    
//  StringCollection KeyList = new StringCollection();
C#中处理读写Ini文件    
//  ReadSection(Section, KeyList);
C#中处理读写Ini文件    
//  Values.Clear();
C#中处理读写Ini文件    
//  foreach (string key in KeyList)
C#中处理读写Ini文件    
//  {
C#中处理读写Ini文件    
//    sectionValue=ReadString(Section, key, "");
C#中处理读写Ini文件    
//    sectionValueSplit=sectionValue.Split(splitString);
C#中处理读写Ini文件    
//    Values.Add(key, sectionValueSplit[0].ToString(),sectionValueSplit[1].ToString());
C#中处理读写Ini文件 
C#中处理读写Ini文件    
//  }
C#中处理读写Ini文件    
//}
C#中处理读写Ini文件    
//清除某个Section
C#中处理读写Ini文件
    public void EraseSection(string Section)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      //
C#中处理读写Ini文件
      if (!WritePrivateProfileString(Section, nullnull, FileName))
C#中处理读写Ini文件      {
C#中处理读写Ini文件
C#中处理读写Ini文件        throw (new ApplicationException("无法清除Ini文件中的Section"));
C#中处理读写Ini文件      }

C#中处理读写Ini文件    }

C#中处理读写Ini文件    //删除某个Section下的键
C#中处理读写Ini文件
    public void DeleteKey(string Section, string Ident)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      WritePrivateProfileString(Section, Ident, null, FileName);
C#中处理读写Ini文件    }

C#中处理读写Ini文件    //Note:对于Win9X,来说需要实现UpdateFile方法将缓冲中的数据写入文件
C#中处理读写Ini文件    
//在Win NT, 2000和XP上,都是直接写文件,没有缓冲,所以,无须实现UpdateFile
C#中处理读写Ini文件    
//执行完对Ini文件的修改之后,应该调用本方法更新缓冲区。
C#中处理读写Ini文件
    public void UpdateFile()
C#中处理读写Ini文件    {
C#中处理读写Ini文件      WritePrivateProfileString(nullnullnull, FileName);
C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    //检查某个Section下的某个键值是否存在
C#中处理读写Ini文件
    public bool ValueExists(string Section, string Ident)
C#中处理读写Ini文件    {
C#中处理读写Ini文件      //
C#中处理读写Ini文件
      StringCollection Idents = new StringCollection();
C#中处理读写Ini文件      ReadSection(Section, Idents);
C#中处理读写Ini文件      return Idents.IndexOf(Ident) > -1;
C#中处理读写Ini文件    }

C#中处理读写Ini文件
C#中处理读写Ini文件    //确保资源的释放
C#中处理读写Ini文件
    ~IniFiles()
C#中处理读写Ini文件    {
C#中处理读写Ini文件      UpdateFile();
C#中处理读写Ini文件    }

C#中处理读写Ini文件  }

C#中处理读写Ini文件}