C# Ini文件操作实例

 更新时间:2014年02月13日 16:48:36   作者:  
这篇文章主要介绍了C# Ini文件操作实例,需要的朋友可以参考下

在开源中国看到的操作ini文件的,写的还不看,留着以后用

复制代码 代码如下:

using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using System.Collections;
using System.Collections.Specialized;

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

        catch
        {
          throw (new ApplicationException("Ini文件不存在"));
        }
      }
      //必须是完全路径,不能是相对路径
      FileName = fileInfo.FullName;
    }
    //写INI文件
    public void WriteString(string Section, string Ident, string Value)
    {
      if (!WritePrivateProfileString(Section, Ident, Value, FileName))
      {
 
        throw (new ApplicationException("写Ini文件出错"));
      }
    }
    //读取INI文件指定
    public string ReadString(string Section, string Ident, string Default)
    {
      Byte[] Buffer = new Byte[65535];
      int bufLen = GetPrivateProfileString(Section, Ident, Default, Buffer, Buffer.GetUpperBound(0), FileName);
      //必须设定0(系统默认的代码页)的编码方式,否则无法支持中文
      string s = Encoding.GetEncoding(0).GetString(Buffer);
      s = s.Substring(0, bufLen);
      return s.Trim();
    }

    //读整数
    public int ReadInteger(string Section, string Ident, int Default)
    {
      string intStr = ReadString(Section, Ident, Convert.ToString(Default));
      try
      {
        return Convert.ToInt32(intStr);

      }
      catch (Exception ex)
      {
        Console.WriteLine(ex.Message);
        return Default;
      }
    }

    //写整数
    public void WriteInteger(string Section, string Ident, int Value)
    {
      WriteString(Section, Ident, Value.ToString());
    }

    //读布尔
    public bool ReadBool(string Section, string Ident, bool Default)
    {
      try
      {
        return Convert.ToBoolean(ReadString(Section, Ident, Convert.ToString(Default)));
      }
      catch (Exception ex)
      {
        Console.WriteLine(ex.Message);
        return Default;
      }
    }

    //写Bool
    public void WriteBool(string Section, string Ident, bool Value)
    {
      WriteString(Section, Ident, Convert.ToString(Value));
    }

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

      int bufLen = GetPrivateProfileString(Section, null, null, Buffer, Buffer.GetUpperBound(0),
       FileName);
      //对Section进行解析
      GetStringsFromBuffer(Buffer, bufLen, Idents);
    }

    private void GetStringsFromBuffer(Byte[] Buffer, int bufLen, StringCollection Strings)
    {
      Strings.Clear();
      if (bufLen != 0)
      {
        int start = 0;
        for (int i = 0; i < bufLen; i++)
        {
          if ((Buffer[i] == 0) && ((i - start) > 0))
          {
            String s = Encoding.GetEncoding(0).GetString(Buffer, start, i - start);
            Strings.Add(s);
            start = i + 1;
          }
        }
      }
    }
    //从Ini文件中,读取所有的Sections的名称
    public void ReadSections(StringCollection SectionList)
    {
      //Note:必须得用Bytes来实现,StringBuilder只能取到第一个Section
      byte[] Buffer = new byte[65535];
      int bufLen = 0;
      bufLen = GetPrivateProfileString(null, null, null, Buffer,
       Buffer.GetUpperBound(0), FileName);
      GetStringsFromBuffer(Buffer, bufLen, SectionList);
    }
    //读取指定的Section的所有Value到列表中
    public void ReadSectionValues(string Section, NameValueCollection Values)
    {
      StringCollection KeyList = new StringCollection();
      ReadSection(Section, KeyList);
      Values.Clear();
      foreach (string key in KeyList)
      {
        Values.Add(key, ReadString(Section, key, ""));
  
      }
    }
    /**/////读取指定的Section的所有Value到列表中,
    //public void ReadSectionValues(string Section, NameValueCollection Values,char splitString)
    //{  string sectionValue;
    //  string[] sectionValueSplit;
    //  StringCollection KeyList = new StringCollection();
    //  ReadSection(Section, KeyList);
    //  Values.Clear();
    //  foreach (string key in KeyList)
    //  {
    //    sectionValue=ReadString(Section, key, "");
    //    sectionValueSplit=sectionValue.Split(splitString);
    //    Values.Add(key, sectionValueSplit[0].ToString(),sectionValueSplit[1].ToString());
 
    //  }
    //}
    //清除某个Section
    public void EraseSection(string Section)
    {
      //
      if (!WritePrivateProfileString(Section, null, null, FileName))
      {

        throw (new ApplicationException("无法清除Ini文件中的Section"));
      }
    }
    //删除某个Section下的键
    public void DeleteKey(string Section, string Ident)
    {
      WritePrivateProfileString(Section, Ident, null, FileName);
    }
    //Note:对于Win9X,来说需要实现UpdateFile方法将缓冲中的数据写入文件
    //在Win NT, 2000和XP上,都是直接写文件,没有缓冲,所以,无须实现UpdateFile
    //执行完对Ini文件的修改之后,应该调用本方法更新缓冲区。
    public void UpdateFile()
    {
      WritePrivateProfileString(null, null, null, FileName);
    }

    //检查某个Section下的某个键值是否存在
    public bool ValueExists(string Section, string Ident)
    {
      //
      StringCollection Idents = new StringCollection();
      ReadSection(Section, Idents);
      return Idents.IndexOf(Ident) > -1;
    }

    //确保资源的释放
    ~IniFiles()
    {
      UpdateFile();
    }
  }
}

相关文章

  • C#使用yield关键字构建迭代器详解

    C#使用yield关键字构建迭代器详解

    这篇文章主要为大家详细介绍了C#使用yield关键字构建迭代器的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • C#事件订阅发布实现原理详解

    C#事件订阅发布实现原理详解

    这篇文章主要介绍了C#事件订阅发布实现原理详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-12-12
  • C#通过WIN32 API实现嵌入程序窗体

    C#通过WIN32 API实现嵌入程序窗体

    这篇文章主要介绍了C#通过WIN32 API实现嵌入程序窗体的方法,涉及WIN32 API的调用及窗体的设计,具有很好的借鉴价值,需要的朋友可以参考下
    2014-09-09
  • C#实现闹钟AlarmClock实例代码

    C#实现闹钟AlarmClock实例代码

    这篇文章主要介绍了C#实现闹钟AlarmClock实例代码,很实用的功能,需要的朋友可以参考下
    2014-08-08
  • C#实现聊天消息渲染与图文混排详解

    C#实现聊天消息渲染与图文混排详解

    在实现聊天软件时,渲染文字表情图文混排是一项非常繁琐的工作,再加上还要支持GIF动图、引用消息、撤回消息、名片等不同样式的消息渲染时,就更加麻烦了。本文就来和大家分享一下具体实现方法,希望对大家有所帮助
    2023-02-02
  • C#事件中关于sender的用法解读

    C#事件中关于sender的用法解读

    这篇文章主要介绍了C#事件中关于sender的用法解读,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-09-09
  • 浅谈C#中的Infinity和NaN

    浅谈C#中的Infinity和NaN

    下面小编就为大家带来一篇浅谈C#中的Infinity和NaN。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-07-07
  • c#设计模式 适配器模式详细介绍

    c#设计模式 适配器模式详细介绍

    结构模式(Structural Pattern)描述如何将类或者对象结合在一起形成更大的结构。结构模式描述两种不同的东西:类与类的实例。根据这一点,结构模式可以分为类的结构模式和对象的结构模式
    2012-10-10
  • 探讨:如何使用委托,匿名方法对集合进行万能排序

    探讨:如何使用委托,匿名方法对集合进行万能排序

    本篇文章是对使用委托,匿名方法对集合进行万能排序进行了详细的分析介绍,需要的朋友参考下
    2013-06-06
  • c#的params参数使用示例

    c#的params参数使用示例

    这篇文章主要介绍了c#的params参数使用示例,需要的朋友可以参考下
    2014-04-04

最新评论