本文整理自网络,侵删。
user idhttp;var Stream: TMemoryStream;begin try try Stream := TMemoryStream.Create; IdHTTP1.Get('http://dww.no-ip.org/simplex/spw.exe', Stream); a := IdHTTP1.Response.ContentLength; RenameFile('spw.exe', 'spw.old'); Stream.SaveToFile('spw.exe'); finally Stream.Free; IdHTTP1.Disconnect; end; except RenameFile('spw.old', 'spw.exe'); end;
相关阅读 >>
winapi 字符及字符串函数(6): ischaralphanumeric - 是否是个文字(字母或数字)
Delphi 利用createservice写与桌面交互的win32服务
Delphi的webbrowser改造,对网页中alter等对话框的改造方法
Delphi2010获取鼠标指向窗口的位置及鼠标在窗口内的相对位置坐标
Delphi datetimepicker 宽度如何与Delphi自带style同步
更多相关阅读请进入《Delphi》频道 >>