安卓读写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文件的主要内容,如果未能解决你的问题,请参考以下文章

C#中读写INI文件

python3.9 读写ini文件

python-inipython读写ini文件

python读写ini文件

VB读写INI文件

C# 读写Ini文件