本文整理自网络,侵删。
安卓读写INI文件
uses System.IoUtils
procedure TForm1.Button1Click(Sender: TObject);varIniFile:TIniFile;Count:Integer;begin
tryIniFile:=TIniFile.Create(TPath.GetHomePath+'\test.ini');Count:=IniFile.ReadInteger('Config','Count',0);Count:=Count+1;IniFile.WriteString('sec', 'TEL',' ');IniFile.WriteInteger('Config','Count',Count);finallyFreeAndNil(IniFile);end;end;
相关阅读 >>
Delphi 实现 图灵机器人api(idhttp post )
pchar和array [0..255] of char的区别
Delphi api 函数中使用 pchar 参数的几种方法
更多相关阅读请进入《Delphi》频道 >>