這篇文章給大家分享的是有關C#如何實現(xiàn)Winform自動升級程序的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)建站是一家網站設計、成都網站建設,提供網頁設計,網站設計,網站制作,建網站,按需策劃,網站開發(fā)公司,成立于2013年是互聯(lián)行業(yè)建設者,服務者。以提升客戶品牌價值為核心業(yè)務,全程參與項目的網站策劃設計制作,前端開發(fā),后臺程序制作以及后期項目運營并提出專業(yè)建議和思路。
開發(fā)
第三方工具包
新建一個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
//判斷服務器上的版本號如果大于本地版本號,執(zhí)行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#如何實現(xiàn)Winform自動升級程序”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!