狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

.NET C# 程序自動更新組件

freeflydom
2024年11月6日 9:19 本文熱度 619

引言

本來博主想偷懶使用AutoUpdater.NET組件,但由于博主項目有些特殊性和它的功能過于多,于是博主自己實現一個輕量級獨立自動更新組件,可稍作修改集成到大家自己項目中,比如:WPF/Winform/Windows服務。大致思路:發現更新后,從網絡上下載更新包并進行解壓,同時在 WinForms 應用程序中顯示下載和解壓進度條,并重啟程序。以提供更好的用戶體驗。

1. 系統架構概覽

自動化軟件更新系統主要包括以下幾個核心部分:

  • 版本檢查:定期或在啟動時檢查服務器上的最新版本。
  • 下載更新:如果發現新版本,則從服務器下載更新包。
  • 解壓縮與安裝:解壓下載的更新包,替換舊文件。
  • 重啟應用:更新完畢后,重啟應用以加載新版本。

組件實現細節

獨立更新程序邏輯:

1. 創建 WinForms 應用程序

首先,創建一個新的 WinForms 應用程序,用來承載獨立的自動更新程序,界面就簡單兩個組件:添加一個 ProgressBar 和一個 TextBox 控件,用于顯示進度和信息提示。

2. 主窗體加載事件

我們在主窗體的 Load 事件中完成以下步驟:

  • 解析命令行參數。
  • 關閉當前運行的程序。
  • 下載更新包并顯示下載進度。
  • 解壓更新包并顯示解壓進度。
  • 啟動解壓后的新版本程序。

下面是主窗體 Form1_Load 事件處理程序的代碼:

private async void Form1_Load(object sender, EventArgs e)
{
    // 讀取和解析命令行參數
    var args = Environment.GetCommandLineArgs();
    if (!ParseArguments(args, out string downloadUrl, out string programToLaunch, out string currentProgram))
    {
        _ = MessageBox.Show("請提供有效的下載地址和啟動程序名稱的參數。");
        Application.Exit();
        return;
    }
    // 關閉當前運行的程序
    Process[] processes = Process.GetProcessesByName(currentProgram);
    foreach (Process process in processes)
    {
        process.Kill();
        process.WaitForExit();
    }
    // 開始下載和解壓過程
    string downloadPath = Path.Combine(Path.GetTempPath(), Path.GetFileName(downloadUrl));
    progressBar.Value = 0;
    textBoxInformation.Text = "下載中...";
    await DownloadFileAsync(downloadUrl, downloadPath);
    progressBar.Value = 0;
    textBoxInformation.Text = "解壓中...";
    await Task.Run(() => ExtractZipFile(downloadPath, AppDomain.CurrentDomain.BaseDirectory));
    textBoxInformation.Text = "完成";
    // 啟動解壓后的程序
    string programPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, programToLaunch);
    if (File.Exists(programPath))
    {
        _ = Process.Start(programPath);
        Application.Exit();
    }
    else
    {
        _ = MessageBox.Show($"無法找到程序:{programPath}");
    }
}

3. 解析命令行參數

我們需要從命令行接收下載地址、啟動程序名稱和當前運行程序的名稱。以下是解析命令行參數的代碼:

查看代碼

4. 下載更新包并顯示進度

使用 HttpClient 下載文件,并在下載過程中更新進度條:

private async Task DownloadFileAsync(string url, string destinationPath)
{
    using (HttpClient client = new HttpClient())
    {
        using (HttpResponseMessage response = await client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead))
        {
            _ = response.EnsureSuccessStatusCode();
            long? totalBytes = response.Content.Headers.ContentLength;
            using (var stream = await response.Content.ReadAsStreamAsync())
            using (var fileStream = new FileStream(destinationPath, FileMode.Create, FileAccess.Write, FileShare.None, 8192, true))
            {
                var buffer = new byte[8192];
                long totalRead = 0;
                int bytesRead;
                while ((bytesRead = await stream.ReadAsync(buffer, 0, buffer.Length)) != 0)
                {
                    await fileStream.WriteAsync(buffer, 0, bytesRead);
                    totalRead += bytesRead;
                    if (totalBytes.HasValue)
                    {
                        int progress = (int)((double)totalRead / totalBytes.Value * 100);
                        _ = Invoke(new Action(() => progressBar.Value = progress));
                    }
                }
            }
        }
    }
}

5. 解壓更新包并顯示進度

在解壓過程中跳過 Updater.exe 文件(因為當前更新程序正在運行,大家可根據需求修改邏輯),并捕獲異常以確保進度條和界面更新:

 
private void ExtractZipFile(string zipFilePath, string extractPath)
{
    using (ZipArchive archive = ZipFile.OpenRead(zipFilePath))
    {
        int totalEntries = archive.Entries.Count;
        int extractedEntries = 0;
        foreach (ZipArchiveEntry entry in archive.Entries)
        {
            try
            {
                // 跳過 Updater.exe 文件
                if (entry.FullName.Equals(CustConst.AppNmae, StringComparison.OrdinalIgnoreCase))
                {
                    continue;
                }
                string destinationPath = Path.Combine(extractPath, entry.FullName);
                _ = Invoke(new Action(() => textBoxInformation.Text = $"解壓中... {entry.FullName}"));
                if (string.IsNullOrEmpty(entry.Name))
                {
                    // Create directory
                    _ = Directory.CreateDirectory(destinationPath);
                }
                else
                {
                    // Ensure directory exists
                    _ = Directory.CreateDirectory(Path.GetDirectoryName(destinationPath));
                    // Extract file
                    entry.ExtractToFile(destinationPath, overwrite: true);
                }
                extractedEntries++;
                int progress = (int)((double)extractedEntries / totalEntries * 100);
                _ = Invoke(new Action(() => progressBar.Value = progress));
            }
            catch (Exception ex)
            {
                _ = Invoke(new Action(() => textBoxInformation.Text = $"解壓失敗:{entry.FullName}, 錯誤: {ex.Message}"));
                continue;
            }
        }
    }
}

6. 啟動解壓后的新程序

在解壓完成后,啟動新版本的程序,并且關閉更新程序:

查看代碼

檢查更新邏輯

1. 創建 UpdateChecker 類

創建一個 UpdateChecker 類,對外提供引用,用于檢查更新并啟動更新程序

public static class UpdateChecker
{
    public static string UpdateUrl { get; set; }
    public static string CurrentVersion { get; set; }
    public static string MainProgramRelativePath { get; set; }
    public static void CheckForUpdates()
    {
        try
        {
            using (HttpClient client = new HttpClient())
            {
                string xmlContent = client.GetStringAsync(UpdateUrl).Result;
                XDocument xmlDoc = XDocument.Parse(xmlContent);
                var latestVersion = xmlDoc.Root.Element("version")?.Value;
                var downloadUrl = xmlDoc.Root.Element("url")?.Value;
                if (!string.IsNullOrEmpty(latestVersion) && !string.IsNullOrEmpty(downloadUrl) && latestVersion != CurrentVersion)
                {
                    // 獲取當前程序名稱
                    string currentProcessName = Process.GetCurrentProcess().ProcessName;
                    // 啟動更新程序并傳遞當前程序名稱
                    string arguments = $"--url \"{downloadUrl}\" --launch \"{MainProgramRelativePath}\" --current \"{currentProcessName}\"";
                    _ = Process.Start(CustConst.AppNmae, arguments);
                    // 關閉當前主程序
                    Application.Exit();
                }
            }
        }
        catch (Exception ex)
        {
            _ = MessageBox.Show($"檢查更新失敗:{ex.Message}");
        }
    }
}

2. 服務器配置XML

服務器上存放一個XML文件配置當前最新版本、安裝包下載地址等,假設服務器上的 XML 文件內容如下:

<?xml version="1.0" encoding="utf-8"?>
<update>
    <version>1.0.2</version>
    <url>https://example.com/yourfile.zip</url>
</update>

主程序調用更新檢查

主程序可以通過定時器或者手動調用檢查更新的邏輯,博主使用定時檢查更新:

查看代碼

思考:性能與安全考量

在實現自動化更新時,還應考慮性能和安全因素。例如,為了提高效率,可以添加斷點續傳功能;為了保證安全,應驗證下載文件的完整性,例如使用SHA256校驗和,這些博主就不做實現與講解了,目前的功能已經完成了基本的自動更新邏輯

?轉自https://www.cnblogs.com/Bob-luo/p/18231510


該文章在 2024/11/6 9:19:26 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved