标签:style class blog code http tar
程序经常需要读取一些用户设定值,怎么完成这个过程?
B/S程序一般使用XML文件,而C/S程序则使用INI文件。
前篇《C#迁移之callXBFLibrary - 2(调用非托管DLL)》是C#读取INI的示例。
本篇介绍使用Delphi完成这个过程。
首先,引用单元。
uses Windows, SysUtils, Classes, DB, ADODB, StrUtils, Forms, IniFiles;
然后,定义类变量。
var xbfini:TIniFile;
最后,读取/写入数据
1. 初始化类变量
xbfini:= TIniFile.Create(currentDir1 + 'CDPconfig.ini');
其中currentDir1 为当前目录变量。
currentDir1:= ExtractFilePath(ParamStr(0));
2. 读取/写入数据
我们举读取的例子。
xbftemp:= xbfini.ReadString('filePath', '3', 'demo1.xbf');
其参数分别是:小节名,键名,默认值
读取INI文件 - Delphi篇,布布扣,bubuko.com
标签:style class blog code http tar
原文地址:http://blog.csdn.net/xiaobin_hlj80/article/details/34448507