新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章给大家分享的是有关C#如何实现Winform自动升级程序的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
创新互联建站是一家网站设计、成都网站建设,提供网页设计,网站设计,网站制作,建网站,按需策划,网站开发公司,成立于2013年是互联行业建设者,服务者。以提升客户品牌价值为核心业务,全程参与项目的网站策划设计制作,前端开发,后台程序制作以及后期项目运营并提出专业建议和思路。
开发
第三方工具包
新建一个WinForm项目,起名SumUpdater,下图为整个项目的目录
在升级程序中我们需要检测版本信息对比,我在后台的TXT文件里面用的是JSON数据,下载后还要解压ZIP文件,所以我们需要引用第三方程序Newtonsoft.Json和DotNetZip.
在引用里鼠标左键选择管理NuGet程序包
搜索到Newtonsoft.Json和DotNetZip安装即可
主界面
把主窗体改名为MainForm.cs,然后在界面中加入两个控件,一个label,一个progressbar.
然后重写了主窗全的构造函数
public MainForm(string serverIP, int serverPort, string _callBackExeName, string title, int oldversioncode)
增加了服务器的IP地址,端口号,升级完后运行的程序名称,标题信息及当前版本号五个参数.
app.config
在本地的config文件里面加入几个项,用于设置服务器的IP地址,端口号,以及升级完成后调用的EXE程序,还有当前版本号
然后在Program.cs启动项里面加入读取这些信息的参数,然后传递到主窗体中
static void Main()
{
try
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
string serverIP = ConfigurationManager.AppSettings["ServerIP"];
int serverPort = int.Parse(ConfigurationManager.AppSettings["ServerPort"]);
string callBackExeName = ConfigurationManager.AppSettings["CallbackExeName"];
string title = ConfigurationManager.AppSettings["Title"];
int VersionCode = int.Parse(ConfigurationManager.AppSettings ["Version"]);
MainForm form = new MainForm(serverIP, serverPort, callBackExeName, title, VersionCode);
Application.Run(form);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
检测并下载更新 Updater.cs
与服务器的网络通讯我们用的是WebClient方式
这个类里主要的两个方法GetUpdaterInfo()和DownLoadUpGrade(string url)
///
/// 检测升级信息
///
///
///
///
public void GetUpdaterInfo()
{
info = new CUpdInfo();
_client = new WebClient();
//获取检测升级的字符串 _checkurl为地址
string json = _client.DownloadString(_checkurl);
//序列化json
info = SerializationHelper.Deserialize
//判断服务器上的版本号如果大于本地版本号,执行DownLoadUpGrade(),参数是info.appdownloadurl下载地址
if (info.versionCode > _oldversioncode)
{
DownLoadUpGrade(info.appdownloadurl);
}
else
{
_lbltext.Text = "当前为最新版本,无需升级!";
//等待500毫秒后直接启动原程序
Thread.Sleep(1500);
UpdaterOver.StartApp(_appFileName);
}
}
///
/// 下载升级文件
///
///
///
public void DownLoadUpGrade(string url)
{
_client = new WebClient();
if (_client.IsBusy)
{
_client.CancelAsync();
}
_client.DownloadProgressChanged +=
new DownloadProgressChangedEventHandler(webClient_DownloadProgressChanged);
_client.DownloadFileCompleted += new AsyncCompletedEventHandler(webClient_DownloadFileCompleted);
//开始下载
_client.DownloadFileAsync(new Uri(url), _downfilename);
}
///
/// 下载进度条
///
///
///
private void webClient_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
_progressBar.Value = e.ProgressPercentage;
_lbltext.Text = $"正在下载文件,完成进度{e.BytesReceived}/{e.TotalBytesToReceive}";
}
///
/// 下载完成后的事件
///
///
///
private void webClient_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
{
if (e.Cancelled)
{
_lbltext.Text = "下载被取消!";
}
else
{
_lbltext.Text = "下载完成!";
try
{
Thread.Sleep(1000);
UpdaterOver.StartOver(_downfilename, _appDirPath, info.versionCode, _appFileName);
}
catch (Exception ex)
{
_lbltext.Text = ex.Message;
}
}
}
下载完成 UpdaterOver.cs
///
///
///
///
///
public static void StartOver(string zipfile, string destpath, int versioncode, string appfile)
{
//解压文件到指定目录
ZipHelper.ZipHelper.UnZipFile(zipfile, destpath, true);
//成功后修改本地版本信息
UpdateVersion(versioncode);
//重新启动源程序
if (appfile != "")
{
StartApp(appfile);
}
}
下载完后的事件,首先解压ZIP替换文件
然后修改本地的版本号信息
最后再重新启动原程序
感谢各位的阅读!关于“C#如何实现Winform自动升级程序”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!