简单的自动更新程序实现
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-19
创建Download.ashx,用以输出更新文件包:
代码: public void ProcessRequest(HttpContext context) { context.Response.ContentType = "application/zip"; context.Response.WriteFile(context.Server.MapPath("~/App_Data/Update.gzip")); }服务端至此就编写完毕了。 客户端 新建一个WinForm应用程序项目,名为Update: 建好之后直接删掉Form1.cs吧,此程序不需要界面,在Program.cs中写代码就可以了。 同样需要引入GZip类用于解包: 然后编写代码: [STAThread] static void Main() { try { var d = DateTime.Now; while (DateTime.Now.Subtract(d).TotalSeconds < 10) Application.DoEvents(); GZip.解压缩(Path.Combine(Application.StartupPath, "update.data"), Application.StartupPath); } catch { } }这里的作用就是等待10秒,然后解包update.data文件,覆盖到当前目录中。 现在来建立主程序,主程序是WinForm、命令行、WPF都可以,我们新建一个WPF应用程序,命名为MyAPP: 为程序添加服务引用: 这里的地址使用的是本地的调试地址。 为了检测主程序自身的版本号,还需要添加对System.Windows.Forms的引用。 然后开始设计界面,这里仅为演示更新操作,所以界面上只是简单的设计了更新相关的提示、操作控件: 代码为: <Window x:Class="MyApp.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="377" Loaded="Window_Loaded" Closed="Window_Closed"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="1*" /> <RowDefinition Height="1*" /> <RowDefinition Height="1*" /> </Grid.RowDefinitions> <Label Margin="0" Name="label1" HorizontalAlignment="Center" VerticalAlignment="Center" Visibility="Hidden">检测到新版本,是否下载?</Label> <Button Grid.Row="1" Height="23" Name="button1" VerticalAlignment="Center" Visibility="Hidden" Click="button1_Click">开始下载</Button> <Label Grid.Row="2" Margin="0" Name="label2" VerticalAlignment="Center" HorizontalAlignment="Center" Visibility="Hidden">更新包已下载完毕,在程序关闭后将自动执行更新操作。</Label> </Grid> </Window> 需注意的是,这里控件都被设置为Visibility="Hidden",我们将会在需要时再将其显示出来。 编写后台代码: public Uri DownloadUri { get { return _DownloadUri; } set { _DownloadUri = value; } } private Uri _DownloadUri; public bool UpdateReady { get { return _UpdateReady; } set { _UpdateReady = value; } } private bool _UpdateReady; private void Window_Loaded(object sender, RoutedEventArgs e) { var u = new MyApp.ServiceReference.UpdateSoapClient(); var s=u.GetUpdate(System.Windows.Forms.Application.ProductVersion); i |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于简单的自动更新程序实现的所有评论