欢迎来到天天文库
浏览记录
ID:37572529
大小:388.93 KB
页数:17页
时间:2019-05-25
《自动更新+安装包》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、c#自动更新+安装程序的制作一、自动更新的实现让客户端实现自动更新,通常做法是在客户端部署一个单独的自动更新程序。主程序启动后,访问服务端,检查配置文件是否有更新版本,有更新版本就启动更新程序,由更新负责下载更新版本,并更新客户端程序,流程如下:当流程进行到红色部分的是后就调用更新程序进行更新。1)版本判断:客户端和服务端都部署同一个版本文件,客户端登陆时发送验证给服务端判断版本是否一致。Version.xml代码2、l/updater"to="*@domcool.local/updater"type="get"id="508f3e88-4bb0-4585-a5c6-cc41ef57fef3">xxmlns="htt3、p://www.dynastech.com/xmtp/item">版本文件主要比较服务端Version.xml文件和客户端Version.xml文件中Version(版本号)是否一致,如果服务端Version属性大于客户端的Version属性,则通过服务端的fileUrl属性获取新版本的下载地址。供更新程序使用。2)删除原有更新包所有客户端更新文件均下载到C:DocumentsandSettings当前用户名LocalSettingsTemp文件夹内,当客户端运行后首先判断是否有新更新包需要4、下载,如果没有则判断该临时文件夹内是否有旧有安装文件,如果存在,则删除旧有安装文件。privatevoidRemoveOldSetupFile(){try{stringtemp=System.Environment.GetEnvironmentVariable("TEMP");stringfolder=newDirectoryInfo(temp).FullName;if(File.Exists(folder+@""+setupName+".exe")){File.Delete(folder+@""+setupName+".exe5、");}if(File.Exists(folder+@""+setupName+".msi")){File.Delete(folder+@""+setupName+".msi");}}catch{}}备注:关于获取系统特殊文件夹的方法见博客http://www.cnblogs.com/thornfield_he/archive/2009/09/22/1571719.html3)启动下载程序下载程序和客户端程序是相互独立的,可以通过客户端开启新线程启动下载程序。下载程序在文件下载结束后可以关掉客户端程序,并开启新线程启动安装程序进6、行安装。privatevoidUpdate(){if(ShouldUpdate(query.Version,this.version)){MessageBox.Show("请更新客户端文件到版本["+query.Version+"]","更新提示",MessageBoxButtons.OK,MessageBoxIcon.Asterisk);System.Diagnostics.Process.Start(Application.StartupPath+@"AutoUpdater.exe",query.FileUrl);}else{7、RemoveOldSetupFile();}}privateboolShouldUpdate(stringserverVersion,stringlocalVersion){if(!string.IsNullOrEmpty(serverVersion)&&!string.IsNullOrEmpty(localVersion)){returnserverVersion.CompareTo(localVersion)>0;}returntrue;}调用AutoUpdater.exe文件时需要传入文件下载地址。System.Diagnos8、tics.Process.Start(Application.StartupPath+@"AutoUpdater.exe",query.FileUrl);4)下载程序代码下载程序界面usingSystem;usingSystem.C
2、l/updater"to="*@domcool.local/updater"type="get"id="508f3e88-4bb0-4585-a5c6-cc41ef57fef3">xxmlns="htt
3、p://www.dynastech.com/xmtp/item">版本文件主要比较服务端Version.xml文件和客户端Version.xml文件中Version(版本号)是否一致,如果服务端Version属性大于客户端的Version属性,则通过服务端的fileUrl属性获取新版本的下载地址。供更新程序使用。2)删除原有更新包所有客户端更新文件均下载到C:DocumentsandSettings当前用户名LocalSettingsTemp文件夹内,当客户端运行后首先判断是否有新更新包需要
4、下载,如果没有则判断该临时文件夹内是否有旧有安装文件,如果存在,则删除旧有安装文件。privatevoidRemoveOldSetupFile(){try{stringtemp=System.Environment.GetEnvironmentVariable("TEMP");stringfolder=newDirectoryInfo(temp).FullName;if(File.Exists(folder+@""+setupName+".exe")){File.Delete(folder+@""+setupName+".exe
5、");}if(File.Exists(folder+@""+setupName+".msi")){File.Delete(folder+@""+setupName+".msi");}}catch{}}备注:关于获取系统特殊文件夹的方法见博客http://www.cnblogs.com/thornfield_he/archive/2009/09/22/1571719.html3)启动下载程序下载程序和客户端程序是相互独立的,可以通过客户端开启新线程启动下载程序。下载程序在文件下载结束后可以关掉客户端程序,并开启新线程启动安装程序进
6、行安装。privatevoidUpdate(){if(ShouldUpdate(query.Version,this.version)){MessageBox.Show("请更新客户端文件到版本["+query.Version+"]","更新提示",MessageBoxButtons.OK,MessageBoxIcon.Asterisk);System.Diagnostics.Process.Start(Application.StartupPath+@"AutoUpdater.exe",query.FileUrl);}else{
7、RemoveOldSetupFile();}}privateboolShouldUpdate(stringserverVersion,stringlocalVersion){if(!string.IsNullOrEmpty(serverVersion)&&!string.IsNullOrEmpty(localVersion)){returnserverVersion.CompareTo(localVersion)>0;}returntrue;}调用AutoUpdater.exe文件时需要传入文件下载地址。System.Diagnos
8、tics.Process.Start(Application.StartupPath+@"AutoUpdater.exe",query.FileUrl);4)下载程序代码下载程序界面usingSystem;usingSystem.C
此文档下载收益归作者所有