如何操作*.ini文件 ( 积分: 20 )

  • 主题发起人 主题发起人 slf0205
  • 开始时间 开始时间
S

slf0205

Unregistered / Unconfirmed
GUEST, unregistred user!
我想把配置信息放在*.ini文件中
应该如何读写它
 
INI文件的应用
xjq2002

摘 要:INI文件的应用
关键字:INI文件
类 别:文件操作


INI文件在系统配置及应用程序参数保存与设置方面,具有很重要的作用,所以可视化的编程一族,如VB、VC、VFP、Delphi等都提供了读写INI文件的方法,其中Delphi中操作INI文件,最为简洁,这是因为Delphi3提供了一个TInifile类,使我们可以非常灵活的处理INI文件。

一、有必要了解INI文件的结构:
;注释
[小节名]
关键字=值
...

INI文件允许有多个小节,每个小节又允许有多个关键字, “=”后面是该关键字的值。
值的类型有三种:字符串、整型数值和布尔值。其中字符串存贮在INI文件中时没有引号,布尔真值用1表示,布尔假值用0表示。
注释以分号“;”开头。

二、定义
1、在Interface的Uses节增加IniFiles;
2、在Var变量定义部分增加一行:
myinifile:Tinifile;
然后,就可以对变量myinifile进行创建、打开、读取、写入等操作了。

三、打开INI文件
myinifile:=Tinifile.create(’program.ini’);

上面这一行语句将会为变量myinifile与具体的文件 program.ini建立联系,然后,就可以通过变量myinifile,来读写program.ini文件中的关键字的值了。

值得注意的是,如果括号中的文件名没有指明路径的话,那么这个Program.ini文件会存储在Windows目录中,把Program.ini文件存储在应用程序当前目录中的方法是:为其指定完整的路径及文件名。下面的两条语句可以完成这个功
能:
Filename:=ExtractFilePath(Paramstr(0))+’program.ini’;
myinifile:=Tinifile.Create(filename);

四、读取关键字的值

针对INI文件支持的字符串、整型数值、布尔值三种数据类型,TINIfiles类提供了三种不同的对象方法来读取INI文件中关键字的值。

假设已定义变量vs、vi、vb分别为string、 integer、boolean类型。
vs:=myinifile.Readstring(’小节名’,’关键字’,缺省值);
vi:=myinifile.Readinteger(’小节名’,’关键字’,缺省值);
vb:=myinifile.Readbool(’小节名’,’关键字’,缺省值);

其中缺省值为该INI文件不存在该关键字时返回的缺省值。

五、写入INI文件

同样的,TInifile类也提供了三种不同的对象方法,向INI文件写入字符串、整型数及布尔类型的关键字。
myinifile.writestring(’小节名’,’关键字’,变量或字符串值);
myinifile.writeinteger(’小节名’,’关键字’,变量或整型数值);
myinifile.writebool(’小节名’,’关键字’,变量或True或False);

当这个INI文件不存在时,上面的语句还会自动创建该INI文件。

六、删除关键字

除了可用写入方法增加一个关键字,Tinifile类还提供了一个删除关键字的对象方法:
myinifile.DeleteKey(’小节名’,’关键字’);

七、小节操作

增加一个小节可用写入的方法来完成,删除一个小节可用下面的对象方法:
myinifile.EraseSection(’小节名’);

另外Tinifile类还提供了三种对象方法来对小节进行操作:

myinifile.readsection(’小节名’,TStrings变量);可将指定小节中的所有关键字名读取至一个字符串列表变量中;

myinifile.readsections(TStrings变量);可将INI文件中所有小节名读取至一个字符串列表变量中去。

myinifile.readsectionvalues(’小节名’,TStrings变量);可将INI文件中指定小节的所有行(包括关键字、=、值)读取至一个字符串列表变量中去。

八、释放
在适当的位置用下面的语句释放myinifile:
myinifile.distory;

九、一个实例

下面用一个简单的例子(如图),演示了建立、读取、存贮INI文件的方法。myini.ini文件中包含有“程序参数”小节,和用户名称(字符串)、是否正式用户(布尔值)和已运行时间(整型值)三个关键字。程序在窗体建立读取这些数据,并在窗体释放时写myini.ini文件。

附源程序清单
unit Unit1;

interface
uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,inifiles,StdCtrls, ExtCtrls;

type
TForm1 = class(TForm)
Edit1: TEdit;
CheckBox1: TCheckBox;
Edit2: TEdit;
Label1: TLabel;
Label2: TLabel;
Timer1: TTimer;
Label3: TLabel;
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure Timer1Timer(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;

implementation
var
myinifile:TInifile;
{$R *.DFM}

procedure TForm1.FormCreate(Sender: TObject);
var
filename:string;
begin
filename:=ExtractFilePath(paramstr(0))+’myini.ini’;
myinifile:=TInifile.Create(filename);
edit1.Text:= myinifile.readstring(’程序参数’,’用户名称’,’缺省的用户名称’);
edit2.text:= inttostr(myinifile.readinteger(’程序参数’,’已运行时间’,0));
checkbox1.Checked:= myinifile.readbool(’程序参数’,’是否正式用户’,False);
end;

procedure TForm1.FormDestroy(Sender: TObject);
begin
myinifile.writestring(’程序参数’,’用户名称’,edit1.Text);
myinifile.writeinteger(’程序参数’,’已运行时间’,strtoint(edit2.text));
myinifile.writebool(’程序参数’,’是否正式用户’,checkbox1.Checked);
myinifile.Destroy;
end;

procedure TForm1.Timer1Timer(Sender: TObject);
begin
edit2.Text:=inttostr(strtoint(edit2.text)+1);
end;
 
搂上的.INI的各种属性及方法全了。
足够处理一样的问题了。
 
我推荐把Ini的操作再建在一个类里,这样做一些存储、和读取的时候会非常的方便,比如要在Ini里存储一个TStringList类型,自己就可以根据需要随意的定义。这样在主窗口里,代码也会比较好看。
我在每一个程序里都会有如下一个单元,专门做这些事情,LZ可以参考一下。


unit setting;
interface
Uses
Classes,IniFiles,SysUtils,Forms;






Var
JessMail : String;

Type
TSetting = Class
private

Ini_Conf : TiniFile;
protected
function GetDir(index : integer):String;
procedure WriteDir(index : integer;S : String);
public
constructor create;
function ReadStart(Title,Default : String):String;
function WriteStart(Title,Value : String):String;
procedure WriteFileList(SectionName: String;List: TStrings);
function ReadFileList(SectionName: String;List: TStrings):string;
procedure WriteInt(Title : string;Value : integer);
function ReadInt(Title : string;Default : integer): integer;
function ReadBool(Title : string;Default : boolean): boolean;
procedure WriteBool(Title : string;Value : Boolean);
end;
Function GetErrors(StartRow,EndRow:integer):String;
Function GetVersion(Const Description: String;Var Ver : String): boolean;
implementation

Function GetErrors(StartRow,EndRow:integer):String;
Var
T : integer;
begin
T := EndRow - StartRow;
if T <= 0 then
Result := 'No error'
else if (T=1) then
Result := 'Find 1 error!'
else
Result := 'Find '+IntToStr(T)+' errors!';
end;

Function GetVersion(Const Description: String;Var Ver : String): boolean;
Var
T : integer;
I: Integer;
S : String;
ch : char;
FindNormalChar : boolean;
begin
Ver := '';
Result := false;
FindNormalChar := False;
T := AnsiPos(AnsiUppercase('Rev:'), AnsiUppercase(Description));
if T <= 0 then Exit;
for I := T+4 to Length(Description) do
begin
Ch := Description;
if Ch = ' ' then
begin
if FindNormalChar then
begin
break;
end
else
begin
continue;
end;
end;
FindNormalChar := True;
Ver := Ver+Ch;
end;
Result := True;
end;

function TSetting.ReadStart(Title,Default : String):String;
begin
Result := Ini_Conf.ReadString('StartConfig',Title,Default);
end;
function TSetting.WriteStart(Title,Value : String):String;
begin
Ini_conf.WriteString('StartConfig',Title,Value);
end;
function TSetting.GetDir(index:integer):string;
begin
Result := Ini_Conf.ReadString('SuperNet',IntToStr(Index),'');
end;
procedure TSetting.WriteDir(index : integer;S : String);
begin
Ini_Conf.WriteString('SuperNet',IntToStr(Index),S);
end;
procedure TSetting.WriteInt(Title : string;Value : integer);
begin
Ini_Conf.WriteInteger('Config',Title,Value);

end;
procedure TSetting.WriteBool(Title : string;Value : Boolean);
begin
Ini_Conf.WriteBool('Config',Title,Value);

end;

function TSetting.ReadInt(Title : string;Default : integer): integer;
begin
Result := Ini_Conf.ReadInteger('Config',Title,Default)
end;
function TSetting.ReadBool(Title : string;Default : boolean): boolean;
begin
Result := Ini_Conf.ReadBool('Config',Title,Default);
end;
procedure TSetting.WriteFileList(SectionName: String;List: TStrings);
Var
i : integer;
Num : integer;
begin

Ini_Conf.EraseSection(SectionName);
If List.Count>5 then
Num := 5
else
Num := List.Count;

for i := 0 to Num-1 do
begin
Ini_Conf.WriteString(SectionName,IntToStr(i),List);
end;
end;

function TSetting.ReadFileList(SectionName: String;List: TStrings):string;
Var
i : integer;
TempList : TStrings;
S : String;
begin
List.Clear;
Try
TempList := TStringList.Create;
Ini_Conf.ReadSection(SectionName,TempList);
for i := 0 to TempList.Count-1 do
begin
S := Ini_Conf.ReadString(SectionName,TempList,'');
If FileExists(S) then
List.Append(S);
end;

if List.Count >0 then
Result := List[0]
else
Result := '';
finally
TempList.Free;
end;
end;
constructor TSetting.create;
begin
{----------Ini File--------------}
Ini_Conf := TiniFile.Create(ExtractFilePath(Application.EXEName)+'SE config.ini');
end;

end.
 
要那么复杂吗
无非就是几个API函数:
针对 WIN.INI 的:
GetProfileInt; GetProfileString; WriteProfileString;
针对任意INI文件的:
GetPrivateProfileInt; GetPrivateProfileString; WritePrivateProfileString;
 
我觉得不是复杂的问题,而是工作量的问题,假如程序比较大,需要设置的东西比较多,而且要求灵活,这个时候才体现出来。
 
其实只要把ini文件安排的很合理,是可以设置很多很多东西的,不知道楼上说的灵活是什么意思?是修改方便么?
 
我在转贴
特别简单

Delphi中的INI文件编程
2000-07-04· -·-

INI文件在系统配置及应用程序参数保存与设置方面,具有很重要的作用,
所以可视化的编程一族,如VB、VC、VFP、Delphi等都提供了读写INI文件
的方法,其中Delphi中操作INI文件,最为简洁,这是因为Delphi3提供了
一个TInifile类,使我们可以非常灵活的处理INI文件。
一、有必要了解INI文件的结构:

;注释
[小节名]
关键字=值
...

INI文件允许有多个小节,每个小节又允许有多个关键字,“=”后面是
该关键字的值。
值的类型有三种:字符串、整型数值和布尔值。其中字符串存贮在INI文
件中时没有引号,布尔真值用1表示,布尔假值用0表示。

注释以分号“;”开头。

二、定义
1、在Interface的Uses节增加IniFiles;
2、在Var变量定义部分增加一行:


myinifile:Tinifile;

然后,就可以对变量myinifile进行创建、打开、读取、写入等操作了。
三、打开INI文件

myinifile:=Tinifile.create('program.ini');

上面这一行语句将会为变量myinifile与具体的文件program.ini建立联
系,然后,就可以通过变量myinifile,来读写program.ini文件中的关
键字的值了。
值得注意的是,如果括号中的文件名没有指明路径的话,那么这个
Program.ini文件会存储在Windows目录中,把Program.ini文件存储在应
用程序当前目录中的方法是:为其指定完整的路径及文件名。下面的两
条语句可以完成这个功能:


Filename:=ExtractFilePath(Paramstr
(0))+'program.ini';
myinifile:=Tinifile.Create(filename);

四、读取关键字的值
针对INI文件支持的字符串、整型数值、布尔值三种数据类型,
TINIfiles类提供了三种不同的对象方法来读取INI文件中关键字的值。
假设已定义变量vs、vi、vb分别为string、integer、boolean类型。


vs:=myinifile.Readstring
('小节名','关键字',缺省值);
vi:=myinifile.Readinteger
('小节名','关键字',缺省值);
vb:=myinifile.Readbool
('小节名','关键字',缺省值);

其中缺省值为该INI文件不存在该关键字时返回的缺省值。
五、写入INI文件
同样的,TInifile类也提供了三种不同的对象方法,向INI文件写
入字符串、整型数及布尔类型的关键字。

myinifile.writestring('小节名','关键字',变量或字符串值);
myinifile.writeinteger('小节名','关键字',变量或整型数值);
myinifile.writebool('小节名','关键字',变量或True或False);

当这个INI文件不存在时,上面的语句还会自动创建该INI文件。
六、删除关键字
除了可用写入方法增加一个关键字,Tinifile类还提供了一个删
除关键字的对象方法:

myinifile.DeleteKey('小节名','关键字');

七、小节操作
增加一个小节可用写入的方法来完成,删除一个小节可用下面的
对象方法:

myinifile.EraseSection('小节名');

另外Tinifile类还提供了三种对象方法来对小节进行操作:
myinifile.readsection('小节名',TStrings变量);可将指定小节中的
所有关键字名读取至一个字符串列表变量中;

myinifile.readsections(TStrings变量);可将INI文件中所有小节名读
取至一个字符串列表变量中去。

myinifile.readsectionvalues('小节名',TStrings变量);可将INI文件
中指定小节的所有行(包括关键字、=、值)读取至一个字符串列表变
量中去。

八、释放

在适当的位置用下面的语句释放myinifile:
myinifile.distory;

九、一个实例
下面用一个简单的例子(如图),演示了建立、读取、存贮INI文件的方
法。myini.ini文件中包含有“程序参数”小节,和用户名称(字符串
)、是否正式用户(布尔值)和已运行时间(整型值)三个关键字。
程序在窗体建立读取这些数据,并在窗体释放时写myini.ini文件。
附源程序清单


unitUnit1;
interface
uses
Windows,Messages,SysUtils,Classes,Graphics,
Controls,Forms,Dialogs,inifiles,StdCtrls,ExtCtrls;
type
TForm1=class(TForm)
Edit1:TEdit;
CheckBox1:TCheckBox;
Edit2:TEdit;
Label1:TLabel;
Label2:TLabel;
Timer1:TTimer;
Label3:TLabel;
procedureFormCreate(Sender:TObject);
procedureFormDestroy(Sender:TObject);
procedureTimer1Timer(Sender:TObject);
private
{Privatedeclarations}
public
{Publicdeclarations}
end;
var
Form1:TForm1;

implementation
var
myinifile:TInifile;
{$R*.DFM}

procedureTForm1.FormCreate(Sender:TObject);
var
filename:string;
begin
filename:=ExtractFilePath(paramstr(0))+'myini.ini';
myinifile:=TInifile.Create(filename);
edit1.Text:=myinifile.readstring
('程序参数','用户名称','缺省的用户名称');
edit2.text:=inttostr(myinifile.readinteger
('程序参数','已运行时间',0));
checkbox1.Checked:=myinifile.readbool
('程序参数','是否正式用户',False);
end;

procedureTForm1.FormDestroy(Sender:TObject);
begin
myinifile.writestring('程序参数','用户名称',edit1.Text);
myinifile.writeinteger('程序参数','已运行时间',
strtoint(edit2.text));
myinifile.writebool('程序参数','是否正式用户',
checkbox1.Checked);
myinifile.Destroy;
end;

procedureTForm1.Timer1Timer(Sender:TObject);
begin
edit2.Text:=inttostr(strtoint(edit2.text)+1);
end;

end.
 
其实只要把ini文件安排的很合理,是可以设置很多很多东西的,不知道楼上说的灵活是什么意思?是修改方便么?
======================================================
比如现在我要多一些组件的Font属性进行存储,那么就可以定义一个方法,就会很方便的保存Font属性,调用一下就好,假如把这个方法拷贝到其它程序里,也可以很方便的调用,不需要修改代码。
procedure TSetting.WriteFont(Title: String; Font: TFont);
Var
MStyles : TFontStyles;
P : Pointer;
begin
With Ini_Conf do
begin
WriteString ('Fonts',Title+'.Name',Font.Name);
WriteInteger('Fonts',Title+'.Color',Font.Color);
WriteInteger('Fonts',Title+'.Charset',Font.Charset);
WriteInteger('Fonts',Title+'.Size',Font.Size);
MStyles:=Font.Style;
P := @MStyles;
WriteInteger('Fonts',Title+'.Style',integer(P^));
end;
end;
function TSetting.ReadFont(Title: String;Const Default: TFont): TFont;
Var
T : integer;
P : Pointer;
MStyles: TFontStyles;
begin
Result := TFont.Create;
With Ini_Conf do
begin
Result.Name := ReadString('Fonts',Title+'.Name',Default.Name);
Result.Color:= ReadInteger('Fonts',Title+'.Color',Default.Size);
Result.Charset:=ReadInteger('Fonts',Title+'.Charset',Default.Charset);
Result.Size := ReadInteger('Fonts',Title+'.Size',Default.Size);
MStyles := Default.Style;
P := @MStyles;
T := ReadInteger('Fonts',Title+'.Style',Integer(P^));
P := @T;
Result.Style:= TFontStyles(P^);
end;
End;
 
后退
顶部