在WinForm中使用Web Services 來實現 軟件自動升級( Auto Update ) (C#)

winform程序相對web程序而言,功能更強大,編程更方便,但軟件更新卻至關麻煩,要到客戶端一臺一臺地升級,面對這個實際問題,在最近的一個小項目中,本人設計了一個經過軟件實現自動升級技術方案,彌補了這一缺陷,有較好的參考價值。html

1、升級的好處。
       長期以來,廣大程序員爲究竟是使用Client/Server,仍是使用Browser/Server結構爭論不休,在這些爭論當中,C/S結構的程序的可維護性差,佈置困難,升級不方便,維護成本高就是一個至關重要的因素,也是那些B/S的支持者們將Client/Server結構打入地獄的一個重要緣由。 程序員

       如今好了,咱們就在最新的基於Microsoft 的 WinForm上用WebServices來實現軟件的自動升級功能。web

2、升級的技術原理。
        升級的原理有好幾個,首先無非是將現有版本與最新版本做比較,發現最新的則提示用戶是否升級。固然也有人用其它屬性比較的,例如:文件大小。:) 或者更新日期。
        而實現的方法呢?在VB時代,我使用的是XmlHTTP+INet控件。用XmlHTTP獲取信息,用INET傳輸升級文件,而用一個簡單的BAT文件來實現升級。 編程



      而BAT文件有個特性,是能夠刪除本身自己。下面是BAT文件的內容.


3、在.Net時代的實現。
        在.Net時代,咱們就有了更多的選擇,可使用WebRequest,也可使用WebServices。在這裏咱們將用WebServices來實現軟件的自動升級。

        實現原理:在WebServices中實現一個GetVer的WebMethod方法,其做用是獲取當前的最新版本。
   而後將如今版本與最新版本比較,若是有新版本,則進行升級。 app

  步驟:
    1、準備一個XML文件 (Update.xml)。
<?xml version="1.0" encoding="utf-8" ?>
<product>
 <version>1.0.1818.42821</version>
 <description>修正一些Bug</description>
 <filelist count="4" sourcepath="./update/">
  <item name="City.xml" size="">
   <value />
  </item>
  <item name="CustomerApplication.exe" size="">
   <value />
  </item>
  <item name="Interop.SHDocVw.dll" size="">
   <value />
  </item>
  <item name="Citys.xml" size="">
   <value />
  </item>
 </filelist>
</product>
做用是做爲一個升級用的模板。
    2、WebServices的GetVer方法。
異步

            [WebMethod(Description="取得更新版本")]
            public string GetVer()
            {
                  XmlDocument doc = new XmlDocument();
                  doc.Load(Server.MapPath("update.xml"));
                  XmlElement root = doc.DocumentElement;
                  return root.SelectSingleNode("version").InnerText;
            }

 

     3、WebServices的GetUpdateData方法。 ide

            [WebMethod(Description="在線更新軟件")]
            [SoapHeader("sHeader")]
            public System.Xml.XmlDocument GetUpdateData()
            {
                  //驗證用戶是否登錄
                  if(sHeader==null)
                        return null;
                  if(!DataProvider.GetInstance.CheckLogin(sHeader.Username,sHeader.Password))
                        return null;
                  //取得更新的xml模板內容
                  XmlDocument doc = new XmlDocument();
                  doc.Load(Server.MapPath("update.xml"));
                  XmlElement root = doc.DocumentElement;
                  //看看有幾個文件須要更新
                  XmlNode updateNode = root.SelectSingleNode("filelist"); 
                  string path = updateNode.Attributes["sourcepath"].Value;
                  int count = int.Parse(updateNode.Attributes["count"].Value);
                  //將xml中的value用實際內容替換
                  for(int i=0;i<count;i++)
                  {
                        XmlNode itemNode = updateNode.ChildNodes[i];
                        string fileName = path + itemNode.Attributes["name"].Value;
                        FileStream fs = File.OpenRead(Server.MapPath(fileName));
                        itemNode.Attributes["size"].Value = fs.Length.ToString();
                        BinaryReader br = new BinaryReader(fs);
                        //這裏是文件的實際內容,使用了Base64String編碼
                        itemNode.SelectSingleNode("value").InnerText = 
                                     Convert.ToBase64String(br.ReadBytes((int)fs.Length),0,(int)fs.Length);
                        br.Close();
                        fs.Close();
                  }
                  return doc;
            }

 


    4、在客戶端進行的工做。
      首先引用此WebServices,例如命名爲:WebSvs,
     string nVer = Start.GetService.GetVer(); 
     if(Application.ProductVersion.CompareTo(nVer)<=0)
      update();
post

在本代碼中 Start.GetService是WebSvs的一個Static 實例。首先檢查版本,將結果與當前版本進行比較,
若是爲新版本則執行UpDate方法。
            void update()
            {
                  this.statusBarPanel1.Text = "正在下載...";
                  System.Xml.XmlDocument doc = ((System.Xml.XmlDocument)Start.GetService.GetUpdateData());
                  doc.Save(Application.StartupPath + @"\update.xml");
                  System.Diagnostics.Process.Start(Application.StartupPath + @"\update.exe");
                  Close();
                  Application.Exit();
            }
這裏爲了簡單起見,沒有使用異步方法,固然使用異步方法能更好的提升客戶體驗,這個須要讀者們本身去添加。
:) update的做用是將升級的XML文件下載下來,保存爲執行文件目錄下的一個Update.xml文件。任務完成,
退出程序,等待Update.Exe 來進行升級。
 
    5、Update.Exe 的內容。
 
            private void Form1_Load(object sender, System.EventArgs e)
            {
                  System.Diagnostics.Process[] ps = System.Diagnostics.Process.GetProcesses();
                  foreach(System.Diagnostics.Process p in ps)
                  {
                        //MessageBox.Show(p.ProcessName);
                        if(p.ProcessName.ToLower()=="customerapplication")
                        {
                              p.Kill();
                              break;
                        }
                  }
                  XmlDocument doc = new XmlDocument();
                  doc.Load(Application.StartupPath + @"\update.xml");
                  XmlElement root = doc.DocumentElement;
                  XmlNode updateNode = root.SelectSingleNode("filelist");
                  string path = updateNode.Attributes["sourcepath"].Value;
                  int count = int.Parse(updateNode.Attributes["count"].Value);
                  for(int i=0;i<count;i++)
                  {
                        XmlNode itemNode = updateNode.ChildNodes[i];
                        string fileName = itemNode.Attributes["name"].Value;
                        FileInfo fi = new FileInfo(fileName);
                        fi.Delete();
                        //File.Delete(Application.StartupPath + @"\" + fileName);
                        this.label1.Text = "正在更新: " + fileName + " (" + itemNode.Attributes["size"].Value + ") ...";
                        FileStream fs = File.Open(fileName,FileMode.Create,FileAccess.Write);
                        fs.Write(System.Convert.FromBase64String(itemNode.SelectSingleNode("value").InnerText),0,int.Parse(itemNode.Attributes["size"].Value));
                        fs.Close();
                  }
                  label1.Text = "更新完成";
                  File.Delete(Application.StartupPath + @"\update.xml");
                  label1.Text = "正在從新啓動應用程序...";
                  System.Diagnostics.Process.Start("CustomerApplication.exe");
                  Close();
                  Application.Exit();
            }
 
這個代碼也很容易懂,首先就是找到主進程,若是沒有關閉,則用Process.Kill()來關閉主程序。而後則用一個
XmlDocument來Load程序生成的update.xml文件。用xml文件裏指定的路徑和文件名來生成指定的文件,在這之
前先前已經存在的文件刪除。更新完畢後,則從新啓動主應用程序。這樣更新就完成了。
4、總結:
  從這個實例看來,WebService的工做是很簡單的,也是很容易實現的。好好的使用WebService可以爲咱們
的程序帶來不少新的,強的功能。總而言之,.Net是易用的,強大的語言。若是你們對本代碼有任何意見,歡迎
光臨《開發者》論壇: http://forums.coder.cn/ ,但願和你們共同探討。

 

 

出處:https://www.cnblogs.com/x369/articles/105656.htmlthis

相關文章
相關標籤/搜索