delphi创建文件和读取.ini文件怎么写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi创建文件和读取.ini文件怎么写相关的知识,希望对你有一定的参考价值。

RT

filecreate('路径加文件名');//创建一个文件。

读写ini文件:
先在 uses 定义 Inifiles, 在 var 定义 myinifile:Tinifile;

实现部分写代码:
myinifile:=Tinifile.create('d:\1.ini');//打开D盘的 1.ini 文件。
myinifile.readstring('小节名','关键字','缺省值');//读取字符型数据。
myinifile.redainteger('小节名','关键字','缺省值');//读取整数型数据。
myinifile.readbool('小节名','关键字','缺省值');//读取逻辑型数据。

写入INI文件:
myinifile.writestring('小节名','关键字',变量或字符串值);//写入字符型数据。
myinifile.writeinteger('小节名','关键字','变量或整型数值);//写入整数型数据。
myinifile.writebool('小节名','关键字',变量或TRUE或FALSE);//写入逻辑型数

myinifile.Free;//释放INI文件。
参考技术A Tinifile就是delphi专门处理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;
参考技术B 我写的一个 给你参考一下 实例最直接明白:说明后面
unit PhoneConfig;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls,Inifiles;

type
TPhoneConfigUnit = class(TForm)
Panel1: TPanel;
GroupBox1: TGroupBox;
GroupBox2: TGroupBox;
Edit1: TEdit;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
CheckBox1: TCheckBox;
Label4: TLabel;
Edit2: TEdit;
Label5: TLabel;
Label6: TLabel;
Edit3: TEdit;
Edit4: TEdit;
Label7: TLabel;
Label8: TLabel;
Edit5: TEdit;
Edit6: TEdit;
Button1: TButton;
Button2: TButton;
Label9: TLabel;
Edit7: TEdit;
Label10: TLabel;
CheckBox2: TCheckBox;
procedure Button2Click(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
Private declarations
public
Public declarations
end;

var
PhoneConfigUnit: TPhoneConfigUnit;
inifile:Tinifile;

implementation

uses PhoneMain;

$R *.dfm

procedure TPhoneConfigUnit.Button2Click(Sender: TObject);
begin
Close;
end;

procedure TPhoneConfigUnit.Button1Click(Sender: TObject);
begin
inifile.WriteString('Regular','FilChar',Edit1.Text);
if CheckBox1.Checked=true then
inifile.WriteString('Regular','NotNum','true')
else
inifile.WriteString('Regular','NotNum','false');
if CheckBox2.Checked=true then
inifile.WriteString('Regular','Category','true')
else
inifile.WriteString('Regular','Category','false');
inifile.WriteString('Regular','ForCheck',Edit2.Text);
inifile.WriteString('Regular','Unitcom',Edit3.Text);
inifile.WriteString('Regular','Move',Edit4.Text);
inifile.WriteString('Regular','Telecom',Edit5.Text);
inifile.WriteString('Regular','Min',Edit6.Text);
inifile.WriteString('Regular','Max',Edit7.Text);
with PhoneCheckUnit do
begin
FilChar:=Edit1.Text;
if CheckBox1.Checked then
NotNum:=true
else
NotNum:=false;
if CheckBox2.Checked then
Category:=true
else
Category:=false;
ForCheck:=Edit2.Text;
Unitcom:=Edit3.Text;
Move:=Edit4.Text;
Telecom:=Edit5.Text;
Min:=Edit6.Text;
Max:=Edit7.Text;

if CheckBox2.Checked then
begin
StringList5.Cells[1,0]:='电信手机';
StringList5.Visible:=true;
sleep(1);
StringList4.Cells[1,0]:='联通手机';
StringList4.Visible:=true;
Splitter6.Height:=3;
sleep(1);
StringList2.Cells[1,0]:='固定电话';
StringList3.Visible:=true;
Splitter5.Height:=3;
sleep(1);
StringList3.Cells[1,0]:='移动手机';
Splitter4.Height:=3;
N10.Visible:=true;
N11.Visible:=true;
N12.Visible:=true;
N13.Visible:=true;
N47.Visible:=false;
end
else
begin
StringList2.Cells[1,0]:='电话号码';
StringList3.Visible:=false;
StringList4.Visible:=false;
StringList5.Visible:=false;
Splitter4.Height:=0;
Splitter5.Height:=0;
Splitter6.Height:=0;
N10.Visible:=false;
N11.Visible:=false;
N12.Visible:=false;
N13.Visible:=false;
N47.Visible:=true;
end;
end;
Close;
end;

procedure TPhoneConfigUnit.FormDestroy(Sender: TObject);
begin
inifile.Destroy;
end;

procedure TPhoneConfigUnit.FormCreate(Sender: TObject);
var
fileName:String;
begin
fileName:=ExtractFilePath(ParamStr(0))+'PhoneCheck.ini';
inifile:=Tinifile.Create(fileName);
Edit1.Text:=inifile.ReadString('Regular','FilChar','-');
if inifile.ReadString('Regular','NotNum','true')='true' then
CheckBox1.Checked:=true
else
CheckBox1.Checked:=false;
if inifile.ReadString('Regular','Category','false')='true' then
CheckBox2.Checked:=true
else
CheckBox2.Checked:=false;
Edit2.Text:= inifile.ReadString('Regular','ForCheck','0');
Edit3.Text:= inifile.ReadString('Regular','Unitcom','130 131 132 155 156');
Edit4.Text:= inifile.ReadString('Regular','Move','139 138 137 136 135 134 159 158 150 151 152 154');
Edit5.Text:= inifile.ReadString('Regular','Telecom','133 153 189');
Edit6.Text:= inifile.ReadString('Regular','Min','12');
Edit7.Text:= inifile.ReadString('Regular','Max','13');
end;

end.

有几点注意一下
1.uses 里面要加上Inifiles引用
2.var
inifile:Tinifile; 变量声明
3.窗体创建程序里面初始化 变量 inifile
fileName:=ExtractFilePath(ParamStr(0))+'PhoneCheck.ini';
inifile:=Tinifile.Create(fileName);
ExtractFilePath(ParamStr(0))是exe文件当前目录,
4.数据读取通过 inifile.ReadString
后面有三个参数:先看一下 ini文件内容结构
[Regular]
FilChar=-
NotNum=true
Category=true
ForCheck=0
Unitcom=130 131 132 155 156
Move=134 135 136 137 138 139 138 137 136 135 134 159 158 150 151 152 154
Telecom=133 153 189
Max=13
Min=11
inifile.ReadString 第一个参数就是[Regular]中的 Regular 标题了
第二个参数是 下面每行等号左边的变量
第三个参数是 若读取变量没有找到相应的变量情况下的默认值
5.数据写入
inifile.WriteString
后面也是3个参数
第一个是同上
第二个也同上
第三个是要写入ini文件变量等号右边的值

6.最后别忘了用过的资源要释放掉,在FormDestroy中用
inifile.Destroy;释放资源

用DELPHI写一个代码,将EXCEL文件读取成TXT文本

我是新手,请各位大侠把每段代码的意思标写清楚。

参考技术A 在delphi中调用excel有四种方式,我们选取其中的一种用OleObject来装载excel工作表的方式来谈delphi控制excel的重要属性和方法。
首先给出通过OLE创建的一些主要代码步进行简单说明:
创建OLE对象:
Var olecon: TOleContainer;
Olecon:= TOleContainer.Create(self);
Olecon.oleobject:= Olecon.CreateObject('excel.sheet',false);
或选择导入一个excel文件来创建OLE对象:
Olecon.oleobject:= Olecon.CreateObjectFromFile(xlsname,false);
最好隐藏excel的几个工具条,这样就好象是嵌在你的程序中的一个表而已了:
Olecon.OleObject.application.CommandBars['Standard'].Visible:=false;
Olecon.OleObject.application.CommandBars['Formatting'].Visible:=false;
Olecon.OleObject.application.CommandBars['Reviewing'].Visible:=false;
然后显示并激活excel表,对TOleContainer定义的对象:
Olecon.show;
Olecon.doverb(0);
这样基本可以了,但TOleContainer有个不好的地方,就是当你一点击其它控件是就它就失去焦点,然后就自动退出,其实并没有真的退出,只是需要你再次激活它而已,关键是当它失去焦点的时候就excel对象就不见了,可以用Timage控件把TOleContainer所在的地方有 EXCEL时候的区域图片截下来骗骗用户,我们这里主要不是讲这个,就不详述了。
下面我们就开始讲Excel_TLB中的接口的常用属性和方法,主要是针对导出和设定报表格式的一些接口元素。
单元格的读写属性:
olecon.OleObject.application.cells.item[1,1];
olecon.OleObject.application.cells(1,1);
olecon.OleObject.application.cells[1,1].Value;
上面三种都可以对工作表的‘A1’单元进行读写。
在delphi中对单元格(集),区域,工作表等所有对象的操作都是要Variant来实现的。
自己的程序中选定区域赋给Range:
Var range,sheet:Variant;
Range:= olecon.OleObject.application.Range['A1:C3'];
或者:
Sheet:= olecon.OleObject.application.Activesheet;
Range:= olecon.OleObject.application.Range[sheet.cells[1,1],sheet.cells[3,3]];
对上面的Range合并单元格:
Range.merge;
Range. FormulaR1C1:='合并区';//合并后写入文本
注意以后要读合并的单元格里面的文本就是读合并区域的左上角的那个单元格的文本
在excel表中选定区域赋给range:
range:=excel_grid1.OleObject.application.selection;
拆分单元格:
Range.unmerge;
合并后设定单元格(集)的格式:
Range.HorizontalAlignment:= xlCenter;// 文本水平居中方式
Range.VerticalAlignment:= xlCenter//文本垂直居中方式
Range.WrapText:=true;//文本自动换行
Range.Borders.LineStyle:=1//加边框
Range.Interior.ColorIndex:=39;//填充颜色为淡紫色
Range.Font.name:='隶书';//字体
Range.Font.Color:=clBlue;//字体颜色
常用格式也就这些,以上这些对于单个单元格也适用。
在excel表中寻找前后上下的单元格:
Var u1,u2,u3,u4,u5:Variant;
U1:=olecon.oleobject.application.activecell;//获取当前格;
U2:=u1.previous;//非特殊情况就是u1左边的一格;
U3:=ui.next;//非特殊情况就是u2右边的一格;
U4:=olecon.oleobject.application.cells[u1.cells.row-1,u1.cells.column];//非特殊情况为上面一格
U5:=olecon.oleobject.application.cells[u1.cells.row+1,u1.cells.column];//非特殊情况为下面一格
删除和插入一行和一列:
Olecon.oleobject.application.rows[2].delete;
Olecon.oleobject.application.columns[2].delete;
Olecon.oleobject.application.rows[2].insert;
Olecon.oleobject.application.columns[2].insert;
复制指定区域:
Olecon.oleobject.application.range['A1:C3'].copy;
从指定单元格开始粘贴:
Olecon.oleobject.application.range['A4'].PasteSpecial;
常用的就这些了,对delphi中server面板下的EXEL控件和创建EXCEL.Application COM对象的方式都适用。

我的空间里有
参考技术B 才10分,懒得说本回答被提问者采纳

以上是关于delphi创建文件和读取.ini文件怎么写的主要内容,如果未能解决你的问题,请参考以下文章

delphi中怎么读取ini文件第2行

delphi同步读取ini文件

在Delphi下,如何在DLL里攫取ini文件的内容

delphi 操作ini文件 知道小节名和值,怎么得到关键字

在Delphi下,怎样在DLL里读取ini文件的内容

delphi读取文本问题