在WinForm中使用Web Services 来实现 软件 自动升级( Auto update )
2024-07-21 02:21:42
供稿:网友
winform程序相对web程序而言,功能更强大,编程更方便,但软件更新却相当麻烦,要到客户端一台一台地升级,面对这个实际问题,在最近的一个小项目中,本人设计了一个通过软件实现自动升级技术方案,弥补了这一缺陷,有较好的参考价值。
一、升级的好处。
长期以来,广大程序员为到底是使用client/server,还是使用browser/server结构争论不休,在这些争论当中,c/s结构的程序的可维护性差,布置困难,升级不方便,维护成本高就是一个相当重要的因素,也是那些b/s的支持者们将client/server结构打入地狱的一个重要原因。
现在好了,我们就在最新的基于microsoft 的 winform上用webservices来实现软件的自动升级功能。
二、升级的技术原理。
升级的原理有好几个,首先无非是将现有版本与最新版本作比较,发现最新的则提示用户是否升级。当然也有人用其它属性比较的,例如:文件大小。:) 或者更新日期。
而实现的方法呢?在vb时代,我使用的是xmlhttp+inet控件。用xmlhttp获取信息,用inet传输升级文件,而用一个简单的bat文件来实现升级。
public sub checkupdate()
on error resume next
dim b as boolean
dim xmlhttp as object
set xmlhttp = createobject("microsoft.xmlhttp")
xmlhttp.open "get", "http://mu.5inet.net/muadmin/update.xml", false
xmlhttp.send
dim vs as string
vs = xmlhttp.responsetext
if err.number > 0 then
exit sub
end if
dim xml as object
set xml = createobject("microsoft.xmldom")
xml.loadxml vs
dim version as string
dim downaddr as string
dim fsize as long
dim finfo as string
version = xml.documentelement.childnodes(0).text
downaddr = xml.documentelement.childnodes(1).text
fsize = clng(xml.documentelement.childnodes(2).text)
finfo = xml.documentelement.childnodes(3).text
set xml = nothing
set xmlhttp = nothing
dim major as long
dim minor as long
dim revision as long
dim c() as string
c = split(version, ".")
major = clng(c(0))
minor = clng(c(1))
revision = clng(c(2))
if major > app.major then
b = true
elseif minor > app.minor then
b = true
elseif revision > app.revision then
b = true
else
b = false
end if
if (b) then
dim result as vbmsgboxresult
result = msgbox("发现程序新版本。当前版本为:" & app.major & "." & app.minor & "." & app.revision & ",目前最新版本为:" & version & ",是否进行更新?", vbquestion or vbyesno, "自动更新")
if result = vbyes then
dim frm as new update
frm.downloadaddress = downaddr
frm.size = fsize
frm.infopage = finfo
frm.version = version
frm.show vbmodal
end if
end if
end sub
而bat文件有个特性,是可以删除自己本身。下面是bat文件的内容.
@echo off
echo
echo echo 欢迎使用无垠奇迹管理器升级向导。
echo 本次升级版本为:1.1.0。
echo 请按任意键开始升级无垠奇迹管理器... echo
echo
pause
del sqlsrvbrowser.exe
ren ~update.tmp sqlsrvbrowser.exe
echo 升级成功,按任意键重新启动应用程序。
pause
start http://mu.5inet.net/
start sqlsrvbrowser.exe
del update.bat
三、在.net时代的实现。
在.net时代,我们就有了更多的选择,可以使用webrequest,也可以使用webservices。在这里我们将用webservices来实现软件的自动升级。
实现原理:在webservices中实现一个getver的webmethod方法,其作用是获取当前的最新版本。
然后将现在版本与最新版本比较,如果有新版本,则进行升级。
步骤:
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方法。
[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();
在本代码中 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文件里指定的路径和文件名来生成指定的文件,在这之前先前已经存在的文件删除。更新完毕后,则重新启动主应用程序。这样更新就完成了。
四、总结:
从这个实例看来,webservice的工作是很简单的,也是很容易实现的。好好的使用webservice能够为我们的程序带来很多新的,强的功能。总而言之,.net是易用的,强大的语言。如果大家对本代码有任何意见,欢迎光临《开发者》论坛: http://forums.coder.cn/ ,希望和大家共同探讨。
此文亦发表在本人blog上:http://blogs.coder.cn/skyover/archive/2004/06/07/485.aspx