cnblogs/dcrenl/Delphi 操作Ini文件.html
2024-09-24 12:43:01 +08:00

18 lines
4.3 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>Delphi提供了一个TInifile类使我们可以非常灵活的处理INI文件</p>
<p><br />INI文件的结构<br />[小节名]ini文件<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 关键字1值1<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 关键子2值2<br />INI文件允许有多个小节每个小节又允许有多个关键字&ldquo;=&rdquo;后面是该关键字的值。<br />值的类型有三种字符串、整型数值和布尔值。其中字符串存贮在INI文件中时没有引号布尔真值用1表示布尔假值用0表示。</p>
<p>&nbsp;</p>
<p>二、定义</p>
<p>1、&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在Interface的Uses节增加<strong>IniFiles</strong><br />2、&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在Var变量定义部分增加一行<strong>&nbsp;myinifile:Tinifile;<br /></strong>定义类的一个实例。然后就可以对变量myinifile进行创建、打开、读取、写入等操作了</p>
<p>&nbsp;</p>
<p>三、打开INI文件<br /><strong>myinifile:=Tinifile.create(program.ini);</strong><br />上面这一行语句将会为变量myinifile与具体的文件program.ini建立联系然后就可以通过变量myinifile来读写program.ini文件中的关键字的值了。&nbsp;<br />值得注意的是如果括号中的文件名没有指明路径的话那么这个Program.ini文件会存储在Windows目录中,把Program.ini文件存储在应用程序当前目录中的方法是为其指定完整的路径及文件名。下面的两条语句可以完成这个功能&nbsp;<br />Filename:=ExtractFilePath(Paramstr(0))+program.ini;<br />myinifile:=Tinifile.Create(filename);</p>
<p>&nbsp;</p>
<p>四、读取INI文件</p>
<p><strong>myinifile.Readstring(小节名,关键字,变量或字符串值);&nbsp; //读字符串</strong></p>
<p><strong>myinifile.ReadInteger(小节名,关键字,变量或整型数值);&nbsp; //读整数</strong></p>
<p><strong>myinifile.readbool(小节名,关键字,变量或True或False);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //读布尔类型</strong></p>
<p>&nbsp;</p>
<p>五、写入INI文件<br />同样的TInifile类也提供了三种不同的对象方法向INI文件写入字符串、整型数及布尔类型的关键字。&nbsp;<br />&nbsp;<br /><strong>myinifile.writestring(小节名,关键字,变量或字符串值);<br />myinifile.writeinteger(小节名,关键字,变量或整型数值);<br />myinifile.writebool(小节名,关键字,变量或True或False);<br /></strong>当这个INI文件不存在时上面的语句还会自动创建该INI文件</p>
<p>&nbsp;</p>
<p>六、删除关键字<br />除了可用写入方法增加一个关键字Tinifile类还提供了一个删除关键字的对象方法&nbsp;<br />&nbsp;<br /><strong>myinifile.DeleteKey(小节名,关键字);</strong></p>
<p>七、小节操作<br />增加一个小节可用写入的方法来完成,删除一个小节可用下面的对象方法:&nbsp;<br />&nbsp;<br /><strong>myinifile.EraseSection(小节名);<br /></strong>另外Tinifile类还提供了三种对象方法来对小节进行操作&nbsp;<br />myinifile.readsection(小节名,TStrings变量);可将指定小节中的所有关键字名读取至一个字符串列表变量中;&nbsp;<br />myinifile.readsections(TStrings变量);可将INI文件中所有小节名读取至一个字符串列表变量中去。&nbsp;<br />myinifile.readsectionvalues(小节名,TStrings变量);可将INI文件中指定小节的所有行包括关键字、=、值)读取至一个字符串列表变量中去。</p>
<p>八、释放<br />在适当的位置用下面的语句释放myinifile<br /><strong>myinifile.distory;</strong><br />下面是具体例子。源代码如下。创建了一个myini.ini文件有一个名为newini的小节有3个关键字&ldquo;用户名称&rdquo;&ldquo;已运行时间&rdquo;&ldquo;是否正式用户&rdquo;。运行效果可以在edit1里边填入&ldquo;用户名称&rdquo;edit2显示时间不可以改变数值checkbox1通过打勾保存时间和&ldquo;用户名称&rdquo;进入myini.ini文件里边重新打开应用程序时显示的时保存下来的时间和填入的&ldquo;用户名称&rdquo;如果在myini.ini文件里边修改效果和在程序运行过程中修改时一样的。</p>