Csharp/C#教程:C#读写INI文件的方法分享

本文实例讲述了C#读写INI文件的方法。分享给大家供大家参考。具体如下:

虽然微软早已经建议在WINDOWS中用注册表代替INI文件,但是在实际应用中,INI文件仍然有用武之地,尤其现在绿色软件的流行,越来越多的程序将自己的一些配置信息保存到了INI文件中。

INI文件是文本文件,由若干节(section)组成,在每个带括号的标题下面,是若干个关键词(key)及其对应的值(Value)

[Section]
Key=Value

VC中提供了API函数进行INI文件的读写操作,但是微软推出的C#编程语言中却没有相应的方法,下面是一个C#ini文件读写类,从网上收集的,很全,就是没有对section的改名功能,高手可以增加一个。

usingSystem; usingSystem.IO; usingSystem.Runtime.InteropServices; usingSystem.Text; usingSystem.Collections; usingSystem.Collections.Specialized; namespacewuyisky { ///<summary> ///IniFiles的类 ///</summary> publicclassIniFiles { publicstringFileName;//INI文件名 //声明读写INI文件的API函数 [DllImport("kernel32")] privatestaticexternboolWritePrivateProfileString(stringsection,stringkey,stringval,stringfilePath); [DllImport("kernel32")] privatestaticexternintGetPrivateProfileString(stringsection,stringkey,stringdef,byte[]retVal,intsize,stringfilePath); //类的构造函数,传递INI文件名 publicIniFiles(stringAFileName) { //判断文件是否存在 FileInfofileInfo=newFileInfo(AFileName); //Todo:搞清枚举的用法 if((!fileInfo.Exists)) {//||(FileAttributes.DirectoryinfileInfo.Attributes)) //文件不存在,建立文件 System.IO.StreamWritersw=newSystem.IO.StreamWriter(AFileName,false,System.Text.Encoding.Default); try { sw.Write("#表格配置档案"); sw.Close(); } catch { throw(newApplicationException("Ini文件不存在")); } } //必须是完全路径,不能是相对路径 FileName=fileInfo.FullName; } //写INI文件 publicvoidWriteString(stringSection,stringIdent,stringValue) { if(!WritePrivateProfileString(Section,Ident,Value,FileName)) { throw(newApplicationException("写Ini文件出错")); } } //读取INI文件指定 publicstringReadString(stringSection,stringIdent,stringDefault) { Byte[]Buffer=newByte[65535]; intbufLen=GetPrivateProfileString(Section,Ident,Default,Buffer,Buffer.GetUpperBound(0),FileName); //必须设定0(系统默认的代码页)的编码方式,否则无法支持中文 strings=Encoding.GetEncoding(0).GetString(Buffer); s=s.Substring(0,bufLen); returns.Trim(); } //读整数 publicintReadInteger(stringSection,stringIdent,intDefault) { stringintStr=ReadString(Section,Ident,Convert.ToString(Default)); try { returnConvert.ToInt32(intStr); } catch(Exceptionex) { Console.WriteLine(ex.Message); returnDefault; } } //写整数 publicvoidWriteInteger(stringSection,stringIdent,intValue) { WriteString(Section,Ident,Value.ToString()); } //读布尔 publicboolReadBool(stringSection,stringIdent,boolDefault) { try { returnConvert.ToBoolean(ReadString(Section,Ident,Convert.ToString(Default))); } catch(Exceptionex) { Console.WriteLine(ex.Message); returnDefault; } } //写Bool publicvoidWriteBool(stringSection,stringIdent,boolValue) { WriteString(Section,Ident,Convert.ToString(Value)); } //从Ini文件中,将指定的Section名称中的所有Ident添加到列表中 publicvoidReadSection(stringSection,StringCollectionIdents) { Byte[]Buffer=newByte[16384]; //Idents.Clear(); intbufLen=GetPrivateProfileString(Section,null,null,Buffer,Buffer.GetUpperBound(0), FileName); //对Section进行解析 GetStringsFromBuffer(Buffer,bufLen,Idents); } privatevoidGetStringsFromBuffer(Byte[]Buffer,intbufLen,StringCollectionStrings) { Strings.Clear(); if(bufLen!=0) { intstart=0; for(inti=0;i<bufLen;i++) { if((Buffer[i]==0)&&((i-start)>0)) { Strings=Encoding.GetEncoding(0).GetString(Buffer,start,i-start); Strings.Add(s); start=i+1; } } } } //从Ini文件中,读取所有的Sections的名称 publicvoidReadSections(StringCollectionSectionList) { //Note:必须得用Bytes来实现,StringBuilder只能取到第一个Section byte[]Buffer=newbyte[65535]; intbufLen=0; bufLen=GetPrivateProfileString(null,null,null,Buffer, Buffer.GetUpperBound(0),FileName); GetStringsFromBuffer(Buffer,bufLen,SectionList); } //读取指定的Section的所有Value到列表中 publicvoidReadSectionValues(stringSection,NameValueCollectionValues) { StringCollectionKeyList=newStringCollection(); ReadSection(Section,KeyList); Values.Clear(); foreach(stringkeyinKeyList) { Values.Add(key,ReadString(Section,key,"")); } } ////读取指定的Section的所有Value到列表中, //publicvoidReadSectionValues(stringSection,NameValueCollectionValues,charsplitString) //{ stringsectionValue; //  string[]sectionValueSplit; //  StringCollectionKeyList=newStringCollection(); //  ReadSection(Section,KeyList); //  Values.Clear(); //  foreach(stringkeyinKeyList) //  { //    sectionValue=ReadString(Section,key,""); //    sectionValueSplit=sectionValue.Split(splitString); //    Values.Add(key,sectionValueSplit[0].ToString(),sectionValueSplit[1].ToString()); //  } //} //清除某个Section publicvoidEraseSection(stringSection) { if(!WritePrivateProfileString(Section,null,null,FileName)) { throw(newApplicationException("无法清除Ini文件中的Section")); } } //删除某个Section下的键 publicvoidDeleteKey(stringSection,stringIdent) { WritePrivateProfileString(Section,Ident,null,FileName); } //Note:对于Win9X,来说需要实现UpdateFile方法将缓冲中的数据写入文件 //在WinNT,2000和XP上,都是直接写文件,没有缓冲,所以,无须实现UpdateFile //执行完对Ini文件的修改之后,应该调用本方法更新缓冲区。 publicvoidUpdateFile() { WritePrivateProfileString(null,null,null,FileName); } //检查某个Section下的某个键值是否存在 publicboolValueExists(stringSection,stringIdent) { StringCollectionIdents=newStringCollection(); ReadSection(Section,Idents); returnIdents.IndexOf(Ident)>-1; } //确保资源的释放 ~IniFiles() { UpdateFile(); } } }

目前C#对ini文件操作基本上要被xml文件取代了,但是我觉得ini文件的读写仍然是编程的基本,是必须会的

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

您可能感兴趣的文章:C#中读写INI配置文件的方法Windows系统中C#读写ini配置文件的程序代码示例分享C#实现利用WindowsAPI读写INI文件的方法C#实现读写ini文件类实例c#读写ini配置文件示例c#实现ini文件读写类分享C#中读写INI文件的方法例子C#实现ini文件读写操作

标签: 方法 IN

Sublime Text 3 实现C语言代码的编译和运行(示例讲解)

Sublime Text 3 实现C++代码的编译和运行示例

上述就是C#学习教程:C#读写INI文件的方法分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/cdevelopment/906842.html

(0)
上一篇 2021年10月24日
下一篇 2021年10月24日

精彩推荐