安卓读写INI文件
Posted 咏南中间件和开发框架
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓读写INI文件相关的知识,希望对你有一定的参考价值。
安卓读写INI文件
uses System.IoUtils
procedure TForm1.Button1Click(Sender: TObject);
var
IniFile:TIniFile;
Count:Integer;
begin
try
IniFile:=TIniFile.Create(TPath.GetHomePath+‘\test.ini‘);
Count:=IniFile.ReadInteger(‘Config‘,‘Count‘,0);
Count:=Count+1;
IniFile.WriteString(‘sec‘, ‘TEL‘,‘ ‘);
IniFile.WriteInteger(‘Config‘,‘Count‘,Count);
finally
FreeAndNil(IniFile);
end;
end;
以上是关于安卓读写INI文件的主要内容,如果未能解决你的问题,请参考以下文章