本文整理自网络,侵删。
{函数}
function ReadFileToHex(FileName: string): string;
var
b: Byte;
begin
Result := '';
if not FileExists(FileName) then Exit;
with TMemoryStream.Create do begin
LoadFromFile(FileName);
Position := 0;
while Position < Size do
begin
ReadBuffer(b, 1);
Result := Result + Format('%.2x ', [b]);
end;
Trim(Result);
Free;
end;
end;
{调用}
procedure TForm1.Button1Click(Sender: TObject);
var
str: string;
begin
str := ReadFileToHex('c:\temp\test.txt');
ShowMessage(str);
end;
相关阅读 >>
Delphi 10.4.1 edgebrowser 模拟操作网页方法
Delphi ini文件操作 tinifile、tmeminifile
Delphi tstringlist indexof find 查找字符串
Delphi中输入框不能输入初数字意外的字符串的函数(isnumeric)
Delphi idhttp访问datasnap有密码验证的中间件
更多相关阅读请进入《Delphi》频道 >>