C#实现读写ini文件类实例

2021-07-24 09:03

阅读:787

标签:pos   like   bsp   cursor   lin   回收   eve   tool   related   

本文实例讲述了C#实现读写ini文件类。分享给大家供大家参考。具体如下:

这个C#类封装了对INI配置文件进行操作所需的各种函数,包括读取键值、读取键值、删除段落等

using System;
using System.Runtime.InteropServices;
using System.Text;
namespace DotNet.Utilities
{
  /// 
  /// INI文件读写类。
  /// 
  public class INIFile
  {
    public string path;
    public INIFile(string INIPath)
    {
      path = INIPath;
    }
    [DllImport("kernel32")]
    private static extern long WritePrivateProfileString(string section,string key,string val,string filePath);
    [DllImport("kernel32")]
    private static extern int GetPrivateProfileString(string section,string key,string def, StringBuilder retVal,int size,string filePath);
    [DllImport("kernel32")]
    private static extern int GetPrivateProfileString(string section, string key, string defVal, Byte[] retVal, int size, string filePath);
    /// 
    /// 写INI文件
    /// 
    /// 
    /// 
    /// 
    public void IniWriteValue(string Section,string Key,string Value)
    {
      WritePrivateProfileString(Section,Key,Value,this.path);
    }
    /// 
    /// 读取INI文件
    /// 
    /// 
    /// 
    /// 
    public string IniReadValue(string Section,string Key)
    {
      StringBuilder temp = new StringBuilder(255);
      int i = GetPrivateProfileString(Section,Key,"",temp, 255, this.path);
      return temp.ToString();
    }
    public byte[] IniReadValues(string section, string key)
    {
      byte[] temp = new byte[255];
      int i = GetPrivateProfileString(section, key, "", temp, 255, this.path);
      return temp;
    }
    /// 
    /// 删除ini文件下所有段落
    /// 
    public void ClearAllSection()
    {
      IniWriteValue(null,null,null);
    }
    /// 
    /// 删除ini文件下personal段落下的所有键
    /// 
    /// 
    public void ClearSection(string Section)
    {
      IniWriteValue(Section,null,null);
    }
  }
}

希望本文所述对大家的C#程序设计有所帮助。

除声明外,跑步客文章均为原创,转载请以链接形式标明本文地址
  C#实现读写ini文件类实例

本文地址:  http://www.paobuke.com/develop/c-develop/pbk23086.html




相关内容

技术分享图片
C#实现图片上传(PC端和APP)保存及 跨域上传说明
技术分享图片
详解C#中的定时器Timer类及其垃圾回收机制
技术分享图片
C# FileStream???t?áD′?ê?a
技术分享图片
C#操作注册表的方法详解

技术分享图片
C#DT??IIS??μ?framework°?±?o?μ?·?·¨
技术分享图片
C#的winform控件命名规范
技术分享图片
C#调用sql2000存储过程方法小结
技术分享图片
C#采用Winform实现类似Android的Listener

C#实现读写ini文件类实例

标签:pos   like   bsp   cursor   lin   回收   eve   tool   related   

原文地址:http://www.cnblogs.com/paobuke/p/8035674.html


评论


亲,登录后才可以留言!