c# 升级程序怎么做?? 思路??

小范f-li.cn 2008-11-17 05:10:55
如题?
没做过这方面的...

望高手 指点下...
...全文
572 11 打赏 收藏 转发到动态 举报
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
a997712554 2012-09-06
  • 打赏
  • 举报
回复
能不能行啊!
aig_001 2011-05-04
  • 打赏
  • 举报
回复
123123123123123123132
朴存昕 2011-03-29
  • 打赏
  • 举报
回复
UpdateFile什么东西啊?
朴存昕 2011-03-29
  • 打赏
  • 举报
回复
UpdateFile是什么意思啊?
qshArcc 2008-12-17
  • 打赏
  • 举报
回复
            try 
{
WebClient webClient = new WebClient();

//指定路径的文件下载到当前目录下创建名为:update.txt
webClient.DownloadFile(@"F:\Game\Mir2\UpdateFile\update.txt", "update.txt");

StreamReader sr = new StreamReader("update.txt");

List <UpdateFile> files = new List <UpdateFile>();

//升级文件的版本号
string version = sr.ReadLine();

//MessageBox.Show(version);

//将应用程序更名复制
File.Copy(@"Game.exe", "Game_Old.exe", true);

//反射备份的应用程序 得到版本号
Assembly assembly = Assembly.LoadFile(Application.StartupPath
+ @"\Game.exe");

//程序原来的版本号
string currentVersion = assembly.GetName().Version.ToString();

assembly = null;

//如果版本不一致,则升级程序
if (currentVersion != version)
{

//读出有几个文件需要更新
int newFileCount = Convert.ToInt32(sr.ReadLine());

for (int i = 0; i < newFileCount; i++)
{
//取得文件下载路径和文件名
UpdateFile updateFile = new UpdateFile();
updateFile.FileName = sr.ReadLine();
updateFile.DownLoadPath = sr.ReadLine();
files.Add(updateFile);
}

foreach (UpdateFile file in files)
{
WebClient webClientNew = new WebClient();
//更新每个文件 - 注意web服务器的配置
webClientNew.DownloadFile(file.DownLoadPath, file.FileName);
}
MessageBox.Show("升级成功!");

Application.Exit(); //退出更新程序窗体

System.Diagnostics.Process.Start("Game.exe"); //打开游戏窗体可执行文件
}
else
{
MessageBox.Show("您的游戏已经是最新版本!");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
pojianbing 2008-11-17
  • 打赏
  • 举报
回复
用AppUpdater,使用方法参照下边的文章:
http://dev.yesky.com/msdn/398/2340398.shtml
bingbingw 2008-11-17
  • 打赏
  • 举报
回复
1.写一个主程序;一个升级程序。
2.启动升级程序,升级程序连接到网站,下载新的主程序。升级程序获取原有客户端应用程序的最近一次更新日期或版本号或文件大小,两者进行比较。
3.升级程序获取服务器端XML配置文件中新版本程序的更新日期或版本号或文件大小。
4.如果用户选择升级,则获取下载文件列表,开始进行批量下载文档。
dalianxiaolaohu 2008-11-17
  • 打赏
  • 举报
回复
如果是c/s的呢?
说的详细一点好不。。。就像qq那样的升级。。
panrongzeng 2008-11-17
  • 打赏
  • 举报
回复
哪个语言都差不多,本地放一个文档,可以是text或者其他的文档
文档里面放着本机系统版本。
在网站上面放一个XML,XML写一个节点,标示着最新版本和升级版本范围
程序启动,用gethttp()获取网站上面XML文档,比较本地版本,根据需要升级
然后用UDP下载文件安装或者直接覆盖
高味儿 2008-11-17
  • 打赏
  • 举报
回复
前几天做了一个自动更新组件,但是没有仔细分析每个文件是否需要更新,而是把所有文件打包,到客户再解压完成。
需要在客户端和服务端使用XML等配置文件设定文件版本号以确定是否更新。
q2881818 2008-11-17
  • 打赏
  • 举报
回复
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.IO;
using System.Reflection;

namespace Update
{
public partial class UpdateFomr : Form
{
public UpdateFomr()
{
InitializeComponent();
}

/// <summary>
/// 升级按扭事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnUpdate_Click(object sender, EventArgs e)
{
try
{
WebClient webClient = new WebClient();

//指定路径的文件下载到当前目录下创建名为:update.txt
webClient.DownloadFile(@"F:\Game\Mir2\UpdateFile\update.txt", "update.txt");

StreamReader sr = new StreamReader("update.txt");

List<UpdateFile> files = new List<UpdateFile>();

//升级文件的版本号
string version = sr.ReadLine();

//MessageBox.Show(version);

//将应用程序更名复制
File.Copy(@"Game.exe", "Game_Old.exe", true);

//反射备份的应用程序 得到版本号
Assembly assembly = Assembly.LoadFile(Application.StartupPath
+ @"\Game.exe");

//程序原来的版本号
string currentVersion = assembly.GetName().Version.ToString();

assembly = null;

//如果版本不一致,则升级程序
if (currentVersion != version)
{

//读出有几个文件需要更新
int newFileCount = Convert.ToInt32(sr.ReadLine());

for (int i = 0; i < newFileCount; i++)
{
//取得文件下载路径和文件名
UpdateFile updateFile = new UpdateFile();
updateFile.FileName = sr.ReadLine();
updateFile.DownLoadPath = sr.ReadLine();
files.Add(updateFile);
}

foreach (UpdateFile file in files)
{
WebClient webClientNew = new WebClient();
//更新每个文件 - 注意web服务器的配置
webClientNew.DownloadFile(file.DownLoadPath, file.FileName);
}
MessageBox.Show("升级成功!");

Application.Exit(); //退出更新程序窗体

System.Diagnostics.Process.Start("Game.exe"); //打开游戏窗体可执行文件
}
else
{
MessageBox.Show("您的游戏已经是最新版本!");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}

/// <summary>
/// 不升级按扭
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnDeUpdate_Click(object sender, EventArgs e)
{
Application.Exit(); //退出更新程序窗体

System.Diagnostics.Process.Start("Game.exe"); //打开游戏窗体
}
}
}

111,131

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Creator Browser
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧