• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#如何读写ini文件

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
INI文件就是扩展名为“ini”的文件。在Windows系统中,INI文件是很多,最重要的就是“System.ini”、“System32.ini”和“Win.ini”。该文件主要存放用户所做的选择以及系统的各种参数。用户可以通过修改INI文件,来改变应用程序和系统的很多配置。但自从Windows INI文件在Windows系统的地位就开始不断下滑,这是因为注册表的独特优点,使应用程序和系统都把许多参数和初始化信息放进了注册表中。但在某些场合,INI文件还拥有其不可替代的地位。下面是C# 是如何对INI进行读写的操作 
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;

namespace Update
{
  
class IniFile
  {
    
private string fileName;

    [DllImport(
"kernel32")]
    
private static extern int GetPrivateProfileInt(
      
string lpAppName,// 指向包含 Section 名称的字符串地址
      string lpKeyName,// 指向包含 Key 名称的字符串地址
      int nDefault,// 如果 Key 值没有找到,则返回缺省的值是多少
      string lpFileName
      );

    [DllImport(
"kernel32")]
    
private static extern int GetPrivateProfileString(
      
string lpAppName,// 指向包含 Section 名称的字符串地址
      string lpKeyName,// 指向包含 Key 名称的字符串地址
      string lpDefault,// 如果 Key 值没有找到,则返回缺省的字符串的地址
      StringBuilder lpReturnedString,// 返回字符串的缓冲区地址
      int nSize,// 缓冲区的长度
      string lpFileName
      );

    [DllImport(
"kernel32")]
    
private static extern bool WritePrivateProfileString(
      
string lpAppName,// 指向包含 Section 名称的字符串地址
      string lpKeyName,// 指向包含 Key 名称的字符串地址
      string lpString,// 要写的字符串地址
      string lpFileName
      );

    
public IniFile(string filename)
    {
      fileName 
= filename;
    }
    
public int GetInt(string section, string key, int def)
    {
      
return GetPrivateProfileInt(section, key, def, fileName);
    }
    
public string GetString(string section, string key, string def)
    {
      StringBuilder temp 
= new StringBuilder(1024);
      GetPrivateProfileString(section, key, def, temp, 
1024, fileName);
      
return temp.ToString();
    }
    
public void WriteInt(string section, string key, int iVal)
    {
      WritePrivateProfileString(section, key, iVal.ToString(), fileName);
    }
    
public void WriteString(string section, string key, string strVal)
    {
      WritePrivateProfileString(section, key, strVal, fileName);
    }
    
public void DelKey(string section, string key)
    {
      WritePrivateProfileString(section, key, 
null, fileName);
    }
    
public void DelSection(string section)
    {
      WritePrivateProfileString(section, 
nullnull, fileName);
    }

  }
}


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
原创C#各种通用类集合终于出炉了,觉得有用尽管拿去吧发布时间:2022-07-14
下一篇:
C#语法练习(3):运算符发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap