欢迎来到天天文库
浏览记录
ID:11270645
大小:98.50 KB
页数:20页
时间:2018-07-11
《在winform应用程序中实现自动升级》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、最近单位开发一个项目,其中需要用到自动升级功能。因为自动升级是一个比较常用的功能,可能会在很多程序中用到,于是,我就想写一个自动升级的组件,在应用程序中,只需要引用这个自动升级组件,并添加少量代码,即可实现自动升级功能。因为我们的程序中可能包含多个exe或者dll文件,所以要支持多文件的更新。首先,要确定程序应该去哪里下载需要升级的文件。我选择了到指定的网站上去下载,这样比较简单,也通用一些。在这个网站上,需要放置一个当前描述最新文件列表的文件,我们估且叫它服务器配置文件。这个文件保存了当前最新文件的版本号(
2、lastver),大小(size),下载地址(url),本地文件的保存路径(path),还有当更新了这个文件后,程序是否需要重新启动(needRestart)。这个文件大致如下:updateservice.xml 3、 lastver="1.0.0.0" size="28672" needRestart="true" /> 4、://update.iyond.com/CompanyClientApplication/HappyFenClient.zip" lastver="1.0.0.0" size="24576" needRestart="true" /> 5、" needRestart="true" /> 6、.zip" lastver="1.0.0.0" size="24576" needRestart="true" />同时,客户端也保存了一个需要升级的本地文件的列表,形式和服务器配置文件差不多,我们叫它本地配置文件。其中,节点表示是否启用自动升级功能,表示服务器配置文件的地址。update.config7、g/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> true http://update.iyond.com/updateservice.xml <8、LocalFile path="CompanyClient.exe" lastver="1.1.0.0" size="888832" />
3、 lastver="1.0.0.0" size="28672" needRestart="true" /> 4、://update.iyond.com/CompanyClientApplication/HappyFenClient.zip" lastver="1.0.0.0" size="24576" needRestart="true" /> 5、" needRestart="true" /> 6、.zip" lastver="1.0.0.0" size="24576" needRestart="true" />
4、://update.iyond.com/CompanyClientApplication/HappyFenClient.zip" lastver="1.0.0.0" size="24576" needRestart="true" /> 5、" needRestart="true" /> 6、.zip" lastver="1.0.0.0" size="24576" needRestart="true" />
5、" needRestart="true" /> 6、.zip" lastver="1.0.0.0" size="24576" needRestart="true" />
6、.zip" lastver="1.0.0.0" size="24576" needRestart="true" />
7、g/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> true http://update.iyond.com/updateservice.xml <
8、LocalFile path="CompanyClient.exe" lastver="1.1.0.0" size="888832" />
此文档下载收益归作者所有