實現方法:
1、網站提供升級信息。
2、使用HTTP從網站下載升級信息。
3、確定是否進行升級,升級程序
下面我們定義一下升級信息:
[文件名1]
datetime=時間
[文件名2]
datetime=時間
存為Html文件,如定義一個update.htm
[programe1.exe]
datetime=2003-07-06
[programe1.hlp]
datetime=2003-07-06
這裡只是簡單的判斷一下文件的時間,如果時間比需要升級的文件時間小的,表示要下載新版本升級它。當然要做到十全十美,這是判斷是不合理的,這裡只作個簡單的介紹。
寫個fuction,判斷是否有新的版本要升級
function ExistNewFile:boolean;
var i,iFileHandle:integer;
FileDateTime:TDateTime;
AppIni:TiniFile;
g_path:string;
url:string;
files:TStrings;
begin
result:=false;
url:='http://yousoft.hi.com.cn/update.htm'; //要升級的服務器
g_path:=ExtractFilePath(application.ExeName); //升級程序的路徑
if copy(g_path,length(g_path),1)<>'' then g_path:=g_path+'';
if copy(url,length(url),1)<>'/' then url:=url+'/';
//下載升級信息文件
try
HTTPFiles.InputFileMode := true;
HTTPFiles.OutputFileMode := FALSE;
HTTPFiles.ReportLevel := Status_Basic;
HTTPFiles.Body:=g_path+'update/update.ini'; //下載後保存到程序的update目錄下
HTTPFiles.Get(url);
except
result:=false; //'取得升級信息出錯!,不用再繼續
exit;
end;
try
files:=TStringlist.Create; //有哪些文件?
AppIni := TIniFile.Create(g_path+'updateupdate.ini');
AppIni.ReadSections(files);
for i:=0 to files.Count-1 do
try
iFileHandle :=FileOpen(g_path+files[i],fmShareDenyNone);
FileDateTime:=FileDateToDateTime(FileGetDate(iFileHandle)); //取得文件時間
FileClose(iFileHandle);
//是否要下載文件
if FileDateTime<strtodatetime(Appini.ReadString(files[i],'datetime','1900-1-1')) then
begin
result:=true;
break;
end;
except
end;
finally
AppIni.free;
files.Free;
end;
end;
取得files後文件下載!httpfiles為TNMHTTP
HTTPFiles.InputFileMode := true;
HTTPFiles.OutputFileMode := FALSE;
HTTPFiles.ReportLevel := Status_Basic;
HTTPFiles.Body:=g_path+'update/'+files[i];
HTTPFiles.Get(url);
把下載後的文件復制到原程序,並備份出一份
for i:=0 to files.Count-1 do //備份文件
begin
//備份一份文件出來
copyfile(pchar(g_path+files[i]),pchar(g_path+files[i]+'.bak'),false);
end;
for i:=0 to files.Count-1 do //從update復制新文件
begin
copyfile(pchar(g_path+'update'+files[i]),pchar(g_path+files[i]),false);
end;
因為采用了TNMHTTP,文件下載的進度並不是很好控制,可以在TNMHTTP的PacketRecvd事件,確定進度
到這裡基本方法就介紹完了,在Delphi6+WIN2000環境調試通過,這裡我沒有寫出完整的代碼,有興趣可以自己寫寫,多加改善