博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# ini文件操作【源码下载】
阅读量:5375 次
发布时间:2019-06-15

本文共 3727 字,大约阅读时间需要 12 分钟。

  介绍C#如何对ini文件进行读写操作,C#可以通过调用【kernel32.dll】文件中的 WritePrivateProfileString()和GetPrivateProfileString()函数分别对ini文件进行读和写操作。包括:读取key的值、保存key的值、读取所有section、读取所有key、移除section、移除key等操作。

目录

1.

2. :包括读取key的值、读取所有section、读取所有key等操作。

3. : 包括保存key的值、移除section、移除key等操作。

4. :展示运行图及源码下载

 

1. ini文件介绍

ini文件常用于存储各类应用的配置信息,而内部的文件结构主要包括三个概念:sectionkeyvalue

其中section为各独立的区域块,名称可以为英文、中文。

 

2. GetPrivateProfileString()函数 :读取操作

C#可以通过调用【kernel32.dll】文件中的 GetPrivateProfileString()函数对ini文件进行读取操作。

官方API

函数签名

[DllImport("kernel32")]private static extern int GetPrivateProfileString(string sectionName, string key, string defaultValue, byte[] returnBuffer, int size, string filePath); 

成员

sectionName  {string | null}:要读区的区域名。若传入null值,第4个参数returnBuffer将会获得所有的section name。

key {string | null}:key的名称。若传入null值,第4个参数returnBuffer将会获得所有的指定sectionName下的所有key name。

defaultValue {string}:key没找到时的返回值。

returnBuffer {byte[]}:key所对应的值。

filePath {string}:ini文件路径。

支持的操作

1) 。

2) 。

3) 。

 

2.1 获取指定key的值

/// /// 根据Key读取Value/// /// section名称/// key的名称/// 文件路径public static string GetValue(string sectionName, string key, string filePath){    byte[] buffer = new byte[2048];    int length = GetPrivateProfileString(sectionName, key, "发生错误", buffer,999, filePath);    string rs = System.Text.UTF8Encoding.Default.GetString(buffer, 0, length);    return rs;}

 

2.2 获取ini文件所有的section名称

注意:中文名称的section要进行转码。

/// /// 获取ini文件内所有的section名称/// /// 文件路径/// 
返回一个包含section名称的集合
public static List
GetSectionNames(string filePath){ byte[] buffer = new byte[2048]; int length = GetPrivateProfileString(null, "", "", buffer, 999, filePath); String[] rs = System.Text.UTF8Encoding.Default.GetString(buffer, 0, length).Split(new string[] { "\0" },StringSplitOptions.RemoveEmptyEntries); return rs.ToList();}

  

2.3 获取指定section下的所有key名称

同样要对中问名称的key进行转码。

/// /// 获取指定section内的所有key/// /// section名称/// 文件路径/// 
返回一个包含key名称的集合
public static List
GetKeys(string sectionName, string filePath){ byte[] buffer = new byte[2048]; int length = GetPrivateProfileString(sectionName,null,"", buffer, 999, filePath); String[] rs = System.Text.UTF8Encoding.Default.GetString(buffer, 0, length).Split(new string[] { "\0" }, StringSplitOptions.RemoveEmptyEntries); return rs.ToList();}

 

3. WritePrivateProfileString()函数:写入操作

C#可以通过调用【kernel32.dll】文件中的 WritePrivateProfileString()函数对ini文件进行写入操作。

官方API

函数签名

[DllImport("kernel32")]private static extern long WritePrivateProfileString(string sectionName, string key, string value, string filePath);

成员

sectionName {string}:要写入的区域名。

key {string | null}:key的名称。若传入null值,将移除指定的section。

value {string | null}:设置key所对应的值。若传入null值,将移除指定的key。

filePath {string}:ini文件路径。

支持的操作

1) 。

2) 。

3) 。

 

3.1 创建/设置key的值

注意:若此key不存在将会创建,否则就为修改此key的值。

/// /// 保存内容到ini文件/// 
若存在相同的key,就覆盖,否则就增加
///
/// section名称/// key的名称/// 存储的值/// 文件路径public static bool SetValue(string sectionName, string key, string value, string filePath){ int rs = (int)WritePrivateProfileString(sectionName, key, value, filePath); return rs > 0;}

 

3.2 移除指定的section

说明:key参数传入null就为移除指定的section。

/// /// 移除指定的section/// /// section名称/// 文件路径/// 
public static bool RemoveSection(string sectionName, string filePath){ int rs = (int)WritePrivateProfileString(sectionName, null, "", filePath); return rs > 0;}

  

3.3 移除指定的key

说明:value参数传入null就为移除指定的key。

/// /// 移除指定的key/// /// section名称/// 文件路径/// 
public static bool Removekey(string sectionName, string key, string filePath){ int rs = (int)WritePrivateProfileString(sectionName, key, null, filePath); return rs > 0;}

 

4. 源码下载

4.1 运行图

 

4.2 下载地址

百度网盘

CSDN

 

转载于:https://www.cnblogs.com/polk6/p/6052908.html

你可能感兴趣的文章
BZOJ 3399 [Usaco2009 Mar]Sand Castle城堡(贪心)
查看>>
获取元素属性get_attribute
查看>>
在Flex中用Validator检测数字、字符串、Email.
查看>>
[leetcode]4Sum
查看>>
POJ1062 昂贵的聘礼
查看>>
【零基础学习iOS开发】【02-C语言】08-基本运算
查看>>
Java 将指定字符串连接到此字符串的结尾 concat()
查看>>
Hibernate Criterion
查看>>
Python知识
查看>>
我们为什么要搞长沙.NET技术社区(三)
查看>>
杭电acm Cake
查看>>
js函数中this的指向
查看>>
c++ 引用方式传递数组
查看>>
HBase学习之路 (九)HBase phoenix的使用
查看>>
LeetCode() Remove Duplicates from Sorted Array II
查看>>
【svn】idea svn 文件上会出现一个破书
查看>>
cocos2d-x 3.0 场景切换特效汇总(转)
查看>>
SniperOJ-leak-x86-64
查看>>
bzoj 4260: Codechef REBXOR (01 Trie)
查看>>
学好python
查看>>