-1

我正在制作一个可用于任何程序的程序更新器/启动器。我在客户端上有一个配置文件,在 http 服务器上有一个配置文件。我从他们两个那里得到版本号并比较它们,如果它们不是 = 然后更新客户端。

除了更新开始时,我一切正常。我需要说的是,如果有人下载了我的应用程序并且如果一个月不使用,那么在此期间我有 5 次左右的更新。问题是如何让我的程序下载第一个更新,安装它,然后下载下一个更新,直到它们都被下载?

我是编程新手,这是我能想到的唯一一种可以学习的应用程序。谢谢

我在 http 服务器 XML 文件上的 settings.conf。

<Table>
<Product>
<Product_id>1</Product_id>
<Product_name>Infected</Product_name>
<Product_version>1.0.0.1</Product_version>
<Product_Url>http://localhost/update/v1.0.0.1.exe</Product_Url>
<Product_id>2</Product_id>
<Product_name>Infected</Product_name>
<Product_version>1.0.0.2</Product_version>
<Product_Url>http://localhost/update/v1.0.0.2.exe</Product_Url>

<Product_id>3</Product_id>
<Product_name>Infected</Product_name>
<Product_version>1.0.0.3</Product_version>
<Product_Url>http://localhost/update/v1.0.0.3.exe</Product_Url>

<Product_id>4</Product_id>
<Product_name>Infected</Product_name>
<Product_version>1.0.0.4</Product_version>
<Product_Url>http://localhost/update/v1.0.0.4.exe</Product_Url>

<Product_id>5</Product_id>
<Product_name>Infected</Product_name>
<Product_version>1.0.0.5</Product_version>
<Product_Url>http://localhost/update/v1.0.0.5.exe</Product_Url>


</Product>
</Table>

我的客户端配置 XML 文件。

<Table>
<Product>
<Product_id>1</Product_id>
<Product_name>Infected</Product_name>
<Product_version>1.0.0.0</Product_version>
<Product_Url>http://localhost/update/v1.0.0.1.exe</Product_Url>
</Product>
</Table>

我的 C# 表单。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml;
using System.IO;
using System.Net;
using System.Diagnostics;
using System.Runtime.Remoting;

namespace Launcher
{
    public partial class Form1 : Form
    {

        public Form1()
        {

            InitializeComponent();
        }

        public string localversion { get; set; }
        public string remoteversion { get; set; }
        public string UpdateURL { get; set; }

        private void Form1_Load(object sender, EventArgs e)
        {

            webBrowser1.Navigate("http://www.kceoc.com/");
            webBrowser2.Navigate("http://www.kceoc.com/");

            button1.Enabled = false;    // Disable the launch button untill all updates are completed.
            GetLocalXMLFile();          //Run first xml function to start everything off.


        }

        private void GetLocalXMLFile()
        {
            try     //Start error checking.
            {
                using (XmlTextReader localxml = new XmlTextReader("settings.conf"))  //Load xml file in same folder as launcher.exe
                {
                    while (localxml.Read())  // Start reading the settings.conf file
                    {
                        switch (localxml.NodeType) //Get the Node that we will use.
                        {
                            case XmlNodeType.Text:
                                label1.Text = localxml.Value;  //Change the text of label1 to value of Node.
                                string localversion = localxml.Value;  // Store Node Value in string localversion for latter use.
                                GetRemoteXMLFile(localversion, remoteversion); //Everything went ok and got a value from Node so pass this all to our next function witch is get remote xml.
                                break;
                        }
                    }
                }

            }
            catch (FileNotFoundException)
            {
                label1.Text = "Local Config not found. Reinstall the application"; // Catch error incase file is not there.
            }
        }

        private void GetRemoteXMLFile(string localversion, string remoteversion)
        {
            try  //Start error checking
            {
                using (XmlTextReader remotexml = new XmlTextReader("http://localhost/update/settings.conf"))  //Load up remote xml on web server
                {
                    while (remotexml.Read())  //Start reading xml file from server.
                    {
                        switch (remotexml.NodeType)
                        {
                            case XmlNodeType.Text:
                                label2.Text = remotexml.Value; // Change value of label2 to remote xml node value
                                remoteversion = remotexml.Value; // Set the remoteversion string to remotexml.value
                                CompareXMLFileVersions(localversion, remoteversion); // Everything went ok so send localversion string and remoteversion string to compare function.
                                break;
                        }
                    }
                }

            }
            catch (FileNotFoundException)
            {
                label1.Text = "Remote config not found. Maby website id down?"; // Catch error incase file is not there.
            }
        }


        private void CompareXMLFileVersions(string localversion, string remoteversion)
        {

            label1.Text = localversion;         // Just so we can see the value in the lables to konw if they have value or not.
            label2.Text = remoteversion;         // Just so we can see the value in the lables to konw if they have value or not.

            if (localversion == remoteversion)  // Comparing the values of localversion and remoteversion and if they have same value then
            {                                   // change label3 to You have latest version.
                label3.Text = "You have the latest version";

            }
            else
            {
                label3.Text = "There is a new version. Starting update process here"; // If localversion and remoteversion are diffrent then let user know the files are out of date and start the updating process..
                GetListOfUpdates(remoteversion);  // Starting the updating process function..     

            }
        }

        private void GetListOfUpdates(string remoteversion)
        {

            //WebClient webClient = new WebClient();
            //webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
            //webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged);
            //webClient.DownloadFileAsync(new Uri(remoteversion), @"v1.0.0.1.exe");

            string url = "http://localhost/update/v1.0.0.1.exe";
            WebClient downloader = new WebClient();
            downloader.DownloadFileCompleted += new AsyncCompletedEventHandler(downloader_DownloadFileCompleted);
            downloader.DownloadProgressChanged += new DownloadProgressChangedEventHandler(downloader_DownloadProgressChanged);
            downloader.DownloadFileAsync(new Uri(url), "temp.exe");



        }


        void downloader_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
        {

            label1.Text = e.BytesReceived + " " + e.ProgressPercentage;
        }
        void downloader_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e)
        {
            //if (e.Error != null)
            //    MessageBox.Show(e.Error.Message);
            //else
            //    MessageBox.Show("Completed!!!");
        }


    }
}

谢谢

4

1 回答 1

2

欢迎来到 SO!

我是编程新手,这是我能想到的唯一一种可以学习的应用程序。谢谢

根据的新手程度,我真的建议您从更简单的事情开始。否则,我建议您做的第一件事是实际绘制流程图。你的逻辑看起来有点不对劲,看起来你在写这个系统的时候就在试图设计这个系统,这是你永远不想做的事情。

有很多解决方案可以提供更好、更可靠的系统,然后你可以自己制作任何东西,但我可以理解这类项目的教育价值。出于这个原因,我最近制作了自己的“自动更新/启动器”,它运行得相当好,尽管在一个免费的网络服务器上,我和一些朋友是唯一的用户。

这是我为它制作的流程图:

在此处输入图像描述 大:http: //i.imgur.com/qS1U8.png

这实际上是我的小项目的第二次迭代,第一次不是那么压倒性的,而且在不常见的情况下有点灾难性,但这是一次很好的学习经历。这个也有愚蠢的命令文件,我可以定义一些东西,比如在更新期间向用户显示消息,这很好。

如果您不介意查看糟糕且凌乱的代码,您可以在此处查看代码仓库,尽管它没有记录在案,并且有一些部分并未实际使用,但尚未从源代码管理中删除。一个使用它的示例应用程序在这里来源,也很乱)。

对不起,看起来像一个无耻的自我插头,但我不能真正直接回答你的问题,并希望你可以利用其中的一些作为你应该如何去做的指示,因为它实际上是一个非常有趣的项目。

于 2012-08-11T00:01:56.937 回答