1. 程式人生 > >delphi一行一行的讀取txt文字的資料

delphi一行一行的讀取txt文字的資料

var
  Form1: TForm1;
  mylist:TStringlist;
  i,a:integer;


implementation


{$R *.dfm}

procedure TForm1.Button2Click(Sender: TObject);
begin
 if a<>i then{判斷a是否為i,既不是mylist的未尾}
  begin
   button1.Caption:='下一行';
   edit1.Clear;{清除edit1的上一行內容}
   edit1.Text:=mylist.Strings[a];{新增一行}
   a:=a+1;{a值加1,既為下一行}
  end
 else{如果到mylist未尾,賦a值為0,從第一行重開始}
  begin
   a:=0;
   edit1.Clear;
   showmessage('此行為檔案未行,點選從第一行開始');
   edit1.Text:='請點選[重新開始]';
   edit1.SetFocus;
   button1.Caption:='重新開始';
  end;
end;


procedure TForm1.FormCreate(Sender: TObject);
begin
  a:=0;{賦a值為0,以便按button1時讀mylist的第一行}
  if fileexists('E:\servercs\openbrake_machine.txt') then
  begin
    mylist:=TStringlist.Create;
    mylist.LoadFromFile('E:\servercs\openbrake_machine.txt');{讀檔案到mylist}
  end;
  i:=mylist.Count;{獲得mylist的count}
  button1.Caption:='開始';
  edit1.text:='按[開始]鍵讀第一行';
end;


procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);
begin
  mylist.Free;{釋放mylist}
end;