Delphi 用文件流读取文本文件字符串的方法

Posted ----赖格英-----

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi 用文件流读取文本文件字符串的方法相关的知识,希望对你有一定的参考价值。

procedure TForm23.Button4Click(Sender: TObject);
var
pstr:Pchar;
mestr,Str1:string;
FS:TFilestream;
meint,PoStr,I,LenStr:integer;
Fpos:Int64;
TT,IsDay:Boolean;
Liststr:TStringList;
begin
  if not Self.OpenDialog1.Execute then Exit;
  FS:=TFileStream.Create(Self.OpenDialog1.FileName,fmOpenRead);
  meint:=1024;
  getmem(pstr,meint);//申请字符指针内存
  TT :=False;
  I:=0;
  Liststr :=TStringList.Create;
  try
    while not TT do
    begin
      Fpos:=I*meint;
      FS.Position:=Fpos;
      fs.Readbuffer(pstr^,meint);
      if True then
      
      mestr:=pstr;
      SetLength(mestr,meint);
      Liststr.Text:=mestr;
      if i=0 then Self.Memo1.Text:=Liststr.Text;
      Self.Edit1.Text :=IntToStr(Liststr.Count);
      i:=i+1;
      if i>2 then TT :=True;
    end;
  finally
    freemem(Pstr);//释放内存
    FS.Free;//释放流
    Liststr.Free;
  end;
end;

 

以上是关于Delphi 用文件流读取文本文件字符串的方法的主要内容,如果未能解决你的问题,请参考以下文章

delphi读取文本问题

delphi如何读取服务器上的数据库文件

delphi打开unicode文件的问题

delphi中怎么逐行读取文本文件的数据并将每行分别写入指定的不同编辑框

读文本文件

字符输入流读取文本文件ReaderFileReaderBufferedReader