实例介绍
【实例简介】
在线升级模块的客户端主窗体启动时,从FTP服务器上下载软件升级文件,并与计算机上的当前版本相比较,如果有最新版本,则弹出“版本信息”窗体,并将新版本及软件的更新信息显示出来。
【实例截图】
【核心代码】
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Collections; using System.IO; using System.Threading; namespace Upgrade { public partial class frmUpdate : Form { public frmUpdate() { InitializeComponent(); } UpgradeClass.OperateClass operateclass = new UpgradeClass.OperateClass();//实例化公共类对象 //根据服务器端的可更新版本自动添加版本面板,并显示更新的信息 private void frmUpdate_Load(object sender, EventArgs e) { if (frmMain.list.Count > 0) { for (int i = 0; i < frmMain.list.Count; i ) { TabPage mypage = new TabPage(); mypage.Text = frmMain.list[i].ToString(); mypage.ToolTipText = frmMain.HTable2[mypage.Text].ToString(); Label lab = new Label(); lab.Text = frmMain.HTable2[mypage.Text].ToString(); lab.AutoSize = true; lab.Location = new System.Drawing.Point(20, 20); LinkLabel linklab = new LinkLabel(); linklab.Text = "点击下载"; linklab.Location = new Point(300, 155); linklab.LinkArea = new LinkArea(0, linklab.Text.Length); linklab.LinkClicked = new LinkLabelLinkClickedEventHandler(this.linklab_LinkClicked); mypage.Controls.Add(lab); mypage.Controls.Add(linklab); tabControl1.TabPages.Add(mypage); } } else { this.Text = "没有升级版本"; } int Swidth = Screen.PrimaryScreen.WorkingArea.Width;//获取屏幕宽度 int SHeight = Screen.PrimaryScreen.WorkingArea.Height;//获取屏幕高度 this.DesktopLocation = new Point(Swidth - this.Width, SHeight - this.Height);//设置窗体加载时位置 } //下载指定的版本 private void linklab_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { progressBar1.Visible = true; try { string strXmlName = Application.StartupPath "\\Update.xml"; string strName = Application.StartupPath "\\";//定义要读取的本地XML文件 string strVersion = tabControl1.TabPages[tabControl1.SelectedIndex].Text; string strInfo = tabControl1.TabPages[tabControl1.SelectedIndex].ToolTipText; DownLoadDir(strName, frmMain.strServer, frmMain.strUserID, frmMain.strPwd, "Update/" strVersion "/"); operateclass.AddXML(strXmlName, strVersion, strInfo); System.Diagnostics.Process.Start(strName "Update\\" strVersion "\\Debug\\setup.exe"); Application.Exit(); } catch (Exception ex) { MessageBox.Show(ex.Message); } } #region 从FTP服务器上下载文件夹 /// <summary> /// 从FTP服务器上下载文件夹 /// </summary> /// <param name="filePath">下载到的本地路径</param> /// <param name="ftpServerIP">FTP服务器地址</param> /// <param name="ftpUserID">登录用户名</param> /// <param name="ftpPassword">登录密码</param> /// <param name="Path">指定的FTP服务器路径</param> public void DownLoadDir(string filePath, string ftpServerIP, string ftpUserID, string ftpPassword, string Path) { DirectoryInfo di; filePath = Application.StartupPath "\\"; string strNewPath = ""; strNewPath = filePath Path.Remove(Path.LastIndexOf("/")); di = new DirectoryInfo(strNewPath); if (!di.Exists) di.Create(); string[] fileList = operateclass.GetFTPList(ftpServerIP, ftpUserID, ftpPassword, Path); if (fileList != null) progressBar1.Maximum = fileList.Length; if (fileList == null) { } else { foreach (string file in fileList) { //先当作目录处理,如果存在这个目录就递归该目录下面的文件 string[] f = file.Split(' '); string m = f[f.Length - 1]; strNewPath = Path m; strNewPath = strNewPath.Replace("//", "\\"); strNewPath = filePath strNewPath; strNewPath = strNewPath.Replace("/", "\\"); if (file.IndexOf("DIR") != -1) { di = new DirectoryInfo(strNewPath); di.Create(); DownLoadDir(strNewPath, ftpServerIP, ftpUserID, ftpPassword, Path m "/"); } else { operateclass.Download(strNewPath.Remove(strNewPath.LastIndexOf("\\")) "\\", m, ftpServerIP, ftpUserID, ftpPassword, Path); } if (progressBar1.Value < progressBar1.Maximum) progressBar1.Value = 1; } } } #endregion } }
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论