[轉載]在WinForm中使用Web Services 來實現 軟體 自動升級( Auto Update ) (C#)
winform程式相對web程式而言,功能更強大,程式設計更方便,但軟體更新卻相當麻煩,要到客戶端一臺一臺地升級,面對這個實際問題,在最近的一個小專案中,本人設計了一個透過軟體實現自動升級技術方案,彌補了這一缺陷,有較好的參考價值。
一、升級的好處。
長期以來,廣大程式設計師為到底是使用Client/Server,還是使用Browser/Server結構爭論不休,在這些爭論當中,C/S結構的程式的可維護性差,佈置困難,升級不方便,維護成本高就是一個相當重要的因素,也是那些B/S的支持者們將Client/Server結構打入地獄的一個重要原因。
現在好了,我們就在最新的基於Microsoft 的 WinForm上用WebServices來實現軟體的自動升級功能。
二、升級的技術原理。
升級的原理有好幾個,首先無非是將現有版本與最新版本作比較,發現最新的則提示使用者是否升級。當然也有人用其它屬性比較的,例如:檔案大小。:) 或者更新日期。
三、在.Net時代的實現。
在.Net時代,我們就有了更多的選擇,可以使用WebRequest,也可以使用WebServices。在這裡我們將用WebServices來實現軟體的自動升級。
實現原理:在WebServices中實現一個GetVer的WebMethod方法,其作用是獲取當前的最新版本。
然後將現在版本與最新版本比較,如果有新版本,則進行升級。
步驟:
1、準備一個XML檔案 (Update.xml)。
作用是作為一個升級用的模板。
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方法。
[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
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();
在本程式碼中 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
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檔案裡指定的路徑和檔名來生成指定的檔案,在這之前先前已經存在的檔案刪除。更新完畢後,則重新啟動主應用程式。這樣更新就完成了。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/443058/viewspace-913942/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- c#中怎麼自動下載軟體C#
- 用C# 實現C/S模式下軟體自動線上升級C#模式
- 在Rainbond中實現資料庫結構自動化升級AI資料庫
- Web列印外掛實現思路(C#/Winform)WebC#ORM
- Web Services體系 (轉)Web
- 基於Http協議的軟體自動升級HTTP協議
- c# winform實現dll載入時註冊C#ORM
- VB中實現窗體自動隱藏 (轉)
- flyway實現java 自動升級SQL指令碼JavaSQL指令碼
- 使用SQL Apply實現滾動升級SQLAPP
- 在MySQL中利用外來鍵實現級聯刪除(轉)MySql
- Winform中實現拖動 Windows 邊緣來調整其大小ORMWindows
- C#程式實現軟體開機自動啟動的兩種常用方法C#
- 在VB中實現窗體的動態效果 (轉)
- [python]web框架中的程式碼自動過載怎麼實現PythonWeb框架
- 【轉】C# 中 強制退出WinForm程式C#ORM
- 在.NET的Windows桌面應用中使用Amazon的Web Services (轉)WindowsWeb
- java web專案war包自動升級部署方案JavaWeb
- 角逐升級:中國速度引領自動駕駛嶄新未來(附下載)自動駕駛
- 自動升級系統的設計與實現(原始碼)原始碼
- Web Services 平臺 (轉)Web
- Web Services平臺 (轉)Web
- Web Services 簡介 (轉)Web
- c# winform 實現分頁查詢C#ORM
- 用ISAPI方式實現Web頁面的自動更新 (轉)APIWeb
- 在C#中利用DirectX實現聲音播放(轉)C#
- 關閉chrome自動升級的教程 chrome如何取消自動升級Chrome
- 在Director中實現文字滾動 (轉)
- 軟體是實現資料自動流動的核心
- 物聯網裝置OTA軟體升級之:升級包下載過程之旅
- nginx 版本升級 轉載Nginx
- Blazor Web 應用如何實現Auto模式BlazorWeb模式
- Starting AHF Services 使用root使用者進行升級操作
- 在winform中如何實現雙向資料繫結?ORM
- Selenium自動化實現web自動化-1Web
- WinForm下實現子窗體ORM
- samba實現自動掛載Samba
- C#實現Winform間的資料互動的三種方法C#ORM