有没有办法使用.NET代码重新启动用.NET编写的Windows应用程序
我的意思是应用程序应该单击按钮退出并重新启动。
答案 0 :(得分:9)
Application.Restart()是您的方法:)
Here是另一个StackOverflow答案,指出了使用此方法的几个“注意”。
答案 1 :(得分:5)
答案 2 :(得分:0)
我有一个类似的问题,但我的是与无法管理的内存泄漏有关,我无法在一个必须全天候运行的应用程序上找到。对于客户,我同意如果内存消耗超过定义值,则重启应用程序的安全时间是03:00 AM。
我尝试Application.Restart
,但由于它似乎使用某种机制在它已经运行时启动新实例,我去了另一个方案。我使用了文件系统处理的技巧,直到创建它们的进程死掉。因此,从应用程序中,我将文件删除到磁盘,并没有Dispose()
句柄。我使用该文件发送'我自己'的可执行文件和启动目录(以增加灵活性)。
代码:
_restartInProgress = true;
string dropFilename = Path.Combine(Application.StartupPath, "restart.dat");
StreamWriter sw = new StreamWriter(new FileStream(dropFilename, FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite));
sw.WriteLine(Application.ExecutablePath);
sw.WriteLine(Application.StartupPath);
sw.Flush();
Process.Start(new ProcessStartInfo
{
FileName = Path.Combine(Application.StartupPath, "VideoPhill.Restarter.exe"),
WorkingDirectory = Application.StartupPath,
Arguments = string.Format("\"{0}\"", dropFilename)
});
Close();
最后 Close()
将启动应用程序关闭,我在此处用于StreamWriter
的文件句柄将保持打开状态,直到进程真正死亡。然后...
Restarter.exe开始运行。它试图以独占模式读取文件,阻止它在主应用程序没有死之前获得访问权限,然后启动主应用程序,删除文件并存在。我想这不可能更简单:
static void Main(string[] args)
{
string filename = args[0];
DateTime start = DateTime.Now;
bool done = false;
while ((DateTime.Now - start).TotalSeconds < 30 && !done)
{
try
{
StreamReader sr = new StreamReader(new FileStream(filename, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite));
string[] runData = new string[2];
runData[0] = sr.ReadLine();
runData[1] = sr.ReadLine();
Thread.Sleep(1000);
Process.Start(new ProcessStartInfo { FileName = runData[0], WorkingDirectory = runData[1] });
sr.Dispose();
File.Delete(filename);
done = true;
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Thread.Sleep(1000);
}
}