- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi TIdHTTP获取软件版本信息
ver.txt内容:1.0
GetNewVersion(http://www.delphitop.com/ver.txt);
function GetNewVersion(url: string): string;
var
lHTTP: TIdHTTP;
begin
Result := '';
lHTTP := TIdHTTP.create;
try
try
Result := lHTTP.Get(url);
Result := Result;
except
// not responding
end;
finally lHTTP.Free;
end;
end;