一般来说该文件都是保存在本地的,操作.ini文件的同时,我们会将写入的字符串进行简单的MD5加密~
下面的内容转自C#中对INI文件进行读写操作,同时增加了些许补充(黑体字~)
C#中对INI文件进行读写操作时主要用到Windows API函数WritePrivateProfileString和GetPrivateProfileString函数。
WritePrivateProfileString函数
此函数实现对INI文件的写操作。
函数声明:
[ DllImport ( "kernel32" ) ]
private static extern long WritePrivateProfileString ( string section ,string key , string val , string filePath ) ;
参数说明:
section:INI文件中的段落。
key:INI文件中的关键字。
val:INI文件中关键字的数值。
filePath:INI文件完整的路径和名称。
GetPrivateProfileString函数
此函数实现对INI文件的读操作。
函数声明:
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
参数说明:
section:INI文件中的段落名称。理解为分类的措施
key:INI文件中的关键字。根据key值找到value,有点类似字典
def:无法读取时的缺省数值。一般可以设置为string.Empty
retVal:读取数值。根据key读取的输出值,StringBuilder类型,类似于ref,需要new个对象
size:数值的大小。读取的StringBuilder的长度~
filePath:INI文件的完整路径和名称。
注意:C#中使用API函数时,必须引用System.Runtime.InteropServices命名空间。