谁能提供读取ini文件的例子?急需(100分)

  • 主题发起人 主题发起人 jianglai
  • 开始时间 开始时间
ini文件结构:<br>[user1]<br>password=password1<br>power=power1<br><br>[user2]<br>password=password2<br>power=power2<br><br>.......<br><br>[usern]<br>password=passwordn<br>power=powern<br><br><br>一、有必要了解INI文件的结构:<br>&nbsp; &nbsp; ;注释<br>&nbsp; &nbsp; [小节名]<br>&nbsp; &nbsp; 关键字=值<br>&nbsp; &nbsp; ...<br><br>---- INI文件允许有多个小节,每个小节又允许有多个关键字, “=”后面是该关键字的值。 <br>---- 值的类型有三种:字符串、整型数值和布尔值。其中字符串存贮在INI文件中时没有引号,布尔真值用1表示,布尔假值用0表示。 <br><br>---- 注释以分号“;”开头。 <br><br>二、定义<br>---- 1、在Interface的Uses节增加IniFiles; <br>---- 2、在Var变量定义部分增加一行: <br><br>&nbsp; &nbsp; &nbsp; &nbsp;myinifile:Tinifile;<br><br>---- 然后,就可以对变量myinifile进行创建、打开、读取、写入等操作了。 <br>三、打开INI文件<br>&nbsp; &nbsp; myinifile:=Tinifile.create('program.ini');<br><br>---- 上面这一行语句将会为变量myinifile与具体的文件 program.ini建立联系,然后,就可以通过变量myinifile,来读写program.ini文件中的关键字的值了。 <br>---- 值得注意的是,如果括号中的文件名没有指明路径的话,那么这个Program.ini文件会存储在Windows目录中,把Program.ini文件存储在应用程序当前目录中的方法是:为其指定完整的路径及文件名。下面的两条语句可以完成这个功能: <br><br>Filename:=ExtractFilePath(Paramstr<br>(0))+'program.ini';<br>myinifile:=Tinifile.Create(filename);<br><br>四、读取关键字的值<br>---- 针对INI文件支持的字符串、整型数值、布尔值三种数据类型,TINIfiles类提供了三种不同的对象方法来读取INI文件中关键字的值。 <br>---- 假设已定义变量vs、vi、vb分别为string、 integer、boolean类型。 <br><br>vs:=myinifile.Readstring<br>('小节名','关键字',缺省值);<br>vi:=myinifile.Readinteger<br>('小节名','关键字',缺省值);<br>vb:=myinifile.Readbool<br>('小节名','关键字',缺省值);<br><br>---- 其中缺省值为该INI文件不存在该关键字时返回的缺省值。 <br>五、写入INI文件<br>---- 同样的,TInifile类也提供了三种不同的对象方法,向INI文件写入字符串、整型数及布尔类型的关键字。 <br>myinifile.writestring('小节名','关键字',变量或字符串值);<br>myinifile.writeinteger('小节名','关键字',变量或整型数值);<br>myinifile.writebool('小节名','关键字',变量或True或False);<br><br>---- 当这个INI文件不存在时,上面的语句还会自动创建该INI文件。 <br>六、删除关键字<br>---- 除了可用写入方法增加一个关键字,Tinifile类还提供了一个删除关键字的对象方法: <br>myinifile.DeleteKey('小节名','关键字');<br><br>七、小节操作<br>---- 增加一个小节可用写入的方法来完成,删除一个小节可用下面的对象方法: <br>&nbsp; &nbsp; myinifile.EraseSection('小节名');<br><br>---- 另外Tinifile类还提供了三种对象方法来对小节进行操作: <br>---- myinifile.readsection('小节名',TStrings变量);可将指定小节中的所有关键字名读取至一个字符串列表变量中; <br><br>---- myinifile.readsections(TStrings变量);可将INI文件中所有小节名读取至一个字符串列表变量中去。 <br><br>---- myinifile.readsectionvalues('小节名',TStrings变量);可将INI文件中指定小节的所有行(包括关键字、=、值)读取至一个字符串列表变量中去。 <br><br>八、释放<br>在适当的位置用下面的语句释放myinifile:<br>&nbsp; &nbsp; myinifile.distory;<br><br>九、一个实例<br>---- 下面用一个简单的例子(如图),演示了建立、读取、存贮INI文件的方法。myini.ini文件中包含有“程序参数”小节,和用户名称(字符串)、是否正式用户(布尔值)和已运行时间(整型值)三个关键字。程序在窗体建立读取这些数据,并在窗体释放时写myini.ini文件。 <br>---- 附源程序清单 <br><br>unit Unit1;<br>interface<br>uses<br>Windows, Messages, SysUtils, Classes, Graphics, <br>Controls, Forms, Dialogs,inifiles,StdCtrls, ExtCtrls;<br>type<br>&nbsp; TForm1 = class(TForm)<br>&nbsp; &nbsp; Edit1: TEdit;<br>&nbsp; &nbsp; CheckBox1: TCheckBox;<br>&nbsp; &nbsp; Edit2: TEdit;<br>&nbsp; &nbsp; Label1: TLabel;<br>&nbsp; &nbsp; Label2: TLabel;<br>&nbsp; &nbsp; Timer1: TTimer;<br>&nbsp; &nbsp; Label3: TLabel;<br>&nbsp; &nbsp; procedure FormCreate(Sender: TObject);<br>&nbsp; &nbsp; procedure FormDestroy(Sender: TObject);<br>&nbsp; &nbsp; procedure Timer1Timer(Sender: TObject);<br>&nbsp; private<br>&nbsp; &nbsp; { Private declarations }<br>&nbsp; public<br>&nbsp; &nbsp; { Public declarations }<br>&nbsp; end;<br>var<br>&nbsp; Form1: TForm1;<br><br>implementation<br>var<br>&nbsp; myinifile:TInifile;<br>{$R *.DFM}<br><br>procedure TForm1.FormCreate(Sender: TObject);<br>var<br>&nbsp; filename:string;<br>begin<br>&nbsp; filename:=ExtractFilePath(paramstr(0))+'myini.ini';<br>&nbsp; myinifile:=TInifile.Create(filename);<br>&nbsp; edit1.Text:= myinifile.readstring<br>('程序参数','用户名称','缺省的用户名称');<br>&nbsp; edit2.text:= inttostr(myinifile.readinteger<br>('程序参数','已运行时间',0));<br>&nbsp; checkbox1.Checked:= myinifile.readbool<br>('程序参数','是否正式用户',False);<br>end;<br><br>procedure TForm1.FormDestroy(Sender: TObject);<br>begin<br>&nbsp; myinifile.writestring('程序参数','用户名称',edit1.Text);<br>&nbsp; myinifile.writeinteger('程序参数','已运行时间',<br>strtoint(edit2.text));<br>&nbsp; myinifile.writebool('程序参数','是否正式用户',<br>checkbox1.Checked);<br>&nbsp; myinifile.Destroy;<br>end;<br><br>procedure TForm1.Timer1Timer(Sender: TObject);<br>begin<br>&nbsp; edit2.Text:=inttostr(strtoint(edit2.text)+1);<br>end;<br><br>end.<br>
 
有专门的API函数可以用,读,写都有
 
to tseug:<br>&nbsp; 我在2000下试了试,怎么没有生成myini.ini文件呢?
 
写完整的路径名称。否则你在到系统目录(Windows目录)下去找!
 
最方便的办法就是用控件解决了,比如LMD<br>当然非要自己实现的话就看LMD的源码
 
我在一个开发系统中用了如下的代码,请笑纳。<br><br>procedure TMainForm.FormCreate(Sender: TObject);<br>var<br>&nbsp; IniFile: TIniFile;<br>begin<br>&nbsp; MainDir:=ExtractFileDir(Application.Exename);<br><br>&nbsp; IniFile:=TIniFile.Create(MainDir+'/Config.ini');<br>&nbsp; try<br>&nbsp; &nbsp; if not FileExists(MainDir+'/Config.ini') then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; MainForm.Top:=1;<br>&nbsp; &nbsp; &nbsp; MainForm.Left:=1;<br>&nbsp; &nbsp; &nbsp; MainForm.Height:=450;<br>&nbsp; &nbsp; &nbsp; MainForm.Width:=636;<br><br>&nbsp; &nbsp; &nbsp; IniFile.WriteInteger('MainForm','WindowStateMax',0);<br>&nbsp; &nbsp; &nbsp; IniFile.WriteInteger('MainForm','Top',1);<br>&nbsp; &nbsp; &nbsp; IniFile.WriteInteger('MainForm','left',1);<br>&nbsp; &nbsp; &nbsp; IniFile.WriteInteger('MainForm','Height',450);<br>&nbsp; &nbsp; &nbsp; IniFile.WriteInteger('MainForm','Width',636);<br>&nbsp; &nbsp; end<br>&nbsp; &nbsp; else begin<br>&nbsp; &nbsp; &nbsp; if IniFile.ReadInteger('MainForm','WindowStateMax',1)=0 then<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; MainForm.Top:=IniFile.ReadInteger('MainForm','Top',1);<br>&nbsp; &nbsp; &nbsp; &nbsp; MainForm.Left:=IniFile.ReadInteger('MainForm','left',1);<br>&nbsp; &nbsp; &nbsp; &nbsp; MainForm.Height:=IniFile.ReadInteger('MainForm','Height',450);<br>&nbsp; &nbsp; &nbsp; &nbsp; MainForm.Width:=IniFile.ReadInteger('MainForm','Width',636);<br>&nbsp; &nbsp; &nbsp; end<br>&nbsp; &nbsp; &nbsp; else begin<br>&nbsp; &nbsp; &nbsp; &nbsp; MainForm.WindowState:= wsMaximized;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; iFont:=IniFile.ReadInteger('ConfigForm','Font',1);<br>&nbsp; &nbsp; &nbsp; iInterval:=IniFile.ReadInteger('ConfigForm','AutoSaveTime',5);<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;finally<br>&nbsp; &nbsp; &nbsp;IniFile.Free;<br>&nbsp; &nbsp;end;<br>end;<br><br>procedure TMainForm.FormClose(Sender: TObject; var Action: TCloseAction);<br>var<br>&nbsp; IniFile: TIniFile;<br>begin<br>&nbsp; {保存当前的状态到INI文件}<br>&nbsp; IniFile:=TIniFile.Create(MainDir+'/Config.ini');<br>&nbsp; if MainForm.WindowState=(wsNormal) then<br>&nbsp; begin<br>&nbsp; &nbsp; IniFile.WriteInteger('MainForm','WindowStateMax',0);<br>&nbsp; &nbsp; IniFile.WriteInteger('MainForm','Top',MainForm.Top);<br>&nbsp; &nbsp; IniFile.WriteInteger('MainForm','left',MainForm.Left);<br>&nbsp; &nbsp; IniFile.WriteInteger('MainForm','Height',MainForm.Height);<br>&nbsp; &nbsp; IniFile.WriteInteger('MainForm','Width',MainForm.Width);<br>&nbsp; end<br>&nbsp; else<br>&nbsp; &nbsp; IniFile.WriteInteger('MainForm','WindowStateMax',1);<br>&nbsp; IniFile.Free;<br><br>&nbsp; Action:=CaFree;<br>end;<br><br>
 
我也喜欢用TIniFile,还编写了一个类似RegEdit.exe的工具,需要的话可以发给你
 
没错,用TIniFile 类,你可以查查 Delphi 手册关于它的使用方法。
 
<br>==========================Ini文件大全==============<br><br><br>Delphi中的INI文件编程<br><br>INI文件在系统配置及应用程序参数保存与设置方面,具有很重要的作用,所以可视化的编程一族,如VB、VC、VFP、Delphi等都提供了读写INI文件的方法,其中Delphi中操作INI文件,最为简洁,这是因为Delphi3提供了一个TInifile类,使我们可以非常灵活的处理INI文件。<br>一、有必要了解INI文件的结构:<br><br>;注释<br>[小节名]<br>关键字=值<br>...<br><br>INI文件允许有多个小节,每个小节又允许有多个关键字,“=”后面是该关键字的值。<br>值的类型有三种:字符串、整型数值和布尔值。其中字符串存贮在INI文件中时没有引号,布尔真值用1表示,布尔假值用0表示。<br><br>注释以分号“;”开头。<br><br>二、定义<br>1、在Interface的Uses节增加IniFiles;<br>2、在Var变量定义部分增加一行:<br><br><br>myinifile:Tinifile;<br><br>然后,就可以对变量myinifile进行创建、打开、读取、写入等操作了。<br>三、打开INI文件<br><br>myinifile:=Tinifile.create('program.ini');<br><br>上面这一行语句将会为变量myinifile与具体的文件program.ini建立联系,然后,就可以通过变量myinifile,来读写program.ini文件中的关键字的值了。<br>值得注意的是,如果括号中的文件名没有指明路径的话,那么这个Program.ini文件会存储在Windows目录中,把Program.ini文件存储在应用程序当前目录中的方法是:为其指定完整的路径及文件名。下面的两条语句可以完成这个功能:<br><br><br>Filename:=ExtractFilePath(Paramstr<br>(0))+'program.ini';<br>myinifile:=Tinifile.Create(filename);<br><br>四、读取关键字的值<br>针对INI文件支持的字符串、整型数值、布尔值三种数据类型,TINIfiles类提供了三种不同的对象方法来读取INI文件中关键字的值。<br>假设已定义变量vs、vi、vb分别为string、integer、boolean类型。<br><br><br>vs:=myinifile.Readstring<br>('小节名','关键字',缺省值);<br>vi:=myinifile.Readinteger<br>('小节名','关键字',缺省值);<br>vb:=myinifile.Readbool<br>('小节名','关键字',缺省值);<br><br>其中缺省值为该INI文件不存在该关键字时返回的缺省值。<br>五、写入INI文件<br>同样的,TInifile类也提供了三种不同的对象方法,向INI文件写入字符串、整型数及布尔类型的关键字。<br><br>myinifile.writestring('小节名','关键字',变量或字符串值);<br>myinifile.writeinteger('小节名','关键字',变量或整型数值);<br>myinifile.writebool('小节名','关键字',变量或True或False);<br><br>当这个INI文件不存在时,上面的语句还会自动创建该INI文件。<br>六、删除关键字<br>除了可用写入方法增加一个关键字,Tinifile类还提供了一个删除关键字的对象方法:<br><br>myinifile.DeleteKey('小节名','关键字');<br><br>七、小节操作<br>增加一个小节可用写入的方法来完成,删除一个小节可用下面的对象方法:<br><br>myinifile.EraseSection('小节名');<br><br>另外Tinifile类还提供了三种对象方法来对小节进行操作:<br>myinifile.readsection('小节名',TStrings变量);可将指定小节中的所有关键字名读取至一个字符串列表变量中;<br><br>myinifile.readsections(TStrings变量);可将INI文件中所有小节名读取至一个字符串列表变量中去。<br><br>myinifile.readsectionvalues('小节名',TStrings变量);可将INI文件中指定小节的所有行(包括关键字、=、值)读取至一个字符串列表变量中去。<br><br>八、释放<br><br>在适当的位置用下面的语句释放myinifile:<br>myinifile.distory;<br><br>九、一个实例<br>下面用一个简单的例子(如图),演示了建立、读取、存贮INI文件的方法。myini.ini文件中包含有“程序参数”小节,和用户名称(字符串)、是否正式用户(布尔值)和已运行时间(整型值)三个关键字。程序在窗体建立读取这些数据,并在窗体释放时写myini.ini文件。<br>附源程序清单<br><br><br>unitUnit1;<br>interface<br>uses<br>Windows,Messages,SysUtils,Classes,Graphics,<br>Controls,Forms,Dialogs,inifiles,StdCtrls,ExtCtrls;<br>type<br>TForm1=class(TForm)<br>Edit1:TEdit;<br>CheckBox1:TCheckBox;<br>Edit2:TEdit;<br>Label1:TLabel;<br>Label2:TLabel;<br>Timer1:TTimer;<br>Label3:TLabel;<br>procedureFormCreate(Sender:TObject);<br>procedureFormDestroy(Sender:TObject);<br>procedureTimer1Timer(Sender:TObject);<br>private<br>{Privatedeclarations}<br>public<br>{Publicdeclarations}<br>end;<br>var<br>Form1:TForm1;<br><br>implementation<br>var<br>myinifile:TInifile;<br>{$R*.DFM}<br><br>procedureTForm1.FormCreate(Sender:TObject);<br>var<br>filename:string;<br>begin<br>filename:=ExtractFilePath(paramstr(0))+'myini.ini';<br>myinifile:=TInifile.Create(filename);<br>edit1.Text:=myinifile.readstring<br>('程序参数','用户名称','缺省的用户名称');<br>edit2.text:=inttostr(myinifile.readinteger<br>('程序参数','已运行时间',0));<br>checkbox1.Checked:=myinifile.readbool<br>('程序参数','是否正式用户',False);<br>end;<br><br>procedureTForm1.FormDestroy(Sender:TObject);<br>begin<br>myinifile.writestring('程序参数','用户名称',edit1.Text);<br>myinifile.writeinteger('程序参数','已运行时间',<br>strtoint(edit2.text));<br>myinifile.writebool('程序参数','是否正式用户',<br>checkbox1.Checked);<br>myinifile.Destroy;<br>end;<br><br>procedureTForm1.Timer1Timer(Sender:TObject);<br>begin<br>edit2.Text:=inttostr(strtoint(edit2.text)+1);<br>end;<br><br>end.<br><br>程序在Pwin95、Delphi3下调试通过。别忘了给我加分!<br>
 
这么简单的问题,怎么还在这呢?<br>使用TIniFile类绝对没错的!<br>var myini : TIniFile ;<br><br>myini := TIniFile.Create('d:/abc.ini');<br>try<br>//写入整型值:<br>&nbsp; &nbsp;myini.WriteInteger('父类名称','子类名称',缺省值);<br>//读出整型值:<br>&nbsp; &nbsp;myini.ReadInteger('父类名称','子类名称',缺省值);<br>&nbsp; 。。。//其它类似即可<br>finally<br>&nbsp; myini.Free;<br>end;
 
接受答案了.
 
后退
顶部