中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現Winform自動升級程序

發布時間:2021-12-01 09:16:50 來源:億速云 閱讀:305 作者:小新 欄目:大數據

這篇文章給大家分享的是有關C#如何實現Winform自動升級程序的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。


開發

第三方工具包

新建一個WinForm項目,起名SumUpdater,下圖為整個項目的目錄

C#如何實現Winform自動升級程序

在升級程序中我們需要檢測版本信息對比,我在后臺的TXT文件里面用的是JSON數據,下載后還要解壓ZIP文件,所以我們需要引用第三方程序Newtonsoft.Json和DotNetZip.

在引用里鼠標左鍵選擇管理NuGet程序包

C#如何實現Winform自動升級程序

搜索到Newtonsoft.Json和DotNetZip安裝即可

C#如何實現Winform自動升級程序

主界面

把主窗體改名為MainForm.cs,然后在界面中加入兩個控件,一個label,一個progressbar.

C#如何實現Winform自動升級程序

然后重寫了主窗全的構造函數

        public MainForm(string serverIP, int serverPort, string _callBackExeName, string title, int oldversioncode)

增加了服務器的IP地址,端口號,升級完后運行的程序名稱,標題信息及當前版本號五個參數.

app.config

在本地的config文件里面加入幾個項,用于設置服務器的IP地址,端口號,以及升級完成后調用的EXE程序,還有當前版本號

C#如何實現Winform自動升級程序

然后在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());
            }

C#如何實現Winform自動升級程序

檢測并下載更新 Updater.cs

與服務器的網絡通訊我們用的是WebClient方式

這個類里主要的兩個方法GetUpdaterInfo()和DownLoadUpGrade(string url)

       /// <summary>
        /// 檢測升級信息
        /// </summary>
        /// <param name="geturl"></param>
        /// <param name="downurl"></param>
        /// <returns></returns>
        public void GetUpdaterInfo()
        {
            info = new CUpdInfo();
          
            _client = new WebClient();

           //獲取檢測升級的字符串  _checkurl為地址

            string json = _client.DownloadString(_checkurl);

           //序列化json

            info = SerializationHelper.Deserialize<CUpdInfo>(json, 0);
            //判斷服務器上的版本號如果大于本地版本號,執行DownLoadUpGrade(),參數是info.appdownloadurl下載地址

           if (info.versionCode > _oldversioncode)
            {
                DownLoadUpGrade(info.appdownloadurl);
            }
            else
            {
                _lbltext.Text = "當前為最新版本,無需升級!";
                //等待500毫秒后直接啟動原程序
                Thread.Sleep(1500);
                UpdaterOver.StartApp(_appFileName);
            }

      }

        /// <summary>
        /// 下載升級文件
        /// </summary>
        /// <param name="url"></param>
        /// <returns></returns>
        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);
        }

        /// <summary>
        /// 下載進度條
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void webClient_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
        {
            _progressBar.Value = e.ProgressPercentage;
            _lbltext.Text = $"正在下載文件,完成進度{e.BytesReceived}/{e.TotalBytesToReceive}";
        }

        /// <summary>
        /// 下載完成后的事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        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

        /// <summary>
        ///
        /// </summary>
        /// <param name="zipfile"></param>
        /// <param name="destpath"></param>
        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自動升級程序”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙岩市| 邻水| 扶绥县| 淳安县| 鲁甸县| 宁蒗| 乌兰县| 贵港市| 双鸭山市| 扶余县| 长丰县| 共和县| 丹棱县| 芮城县| 广南县| 台州市| 塔城市| 孟村| 南皮县| 威宁| 本溪| 新疆| 涞源县| 额济纳旗| 石阡县| 蓬溪县| 平南县| 璧山县| 佛冈县| 万安县| 微博| 罗定市| 涡阳县| 竹北市| 都匀市| 云霄县| 科尔| 太和县| 东源县| 日照市| 湄潭县|