gpt4 book ai didi

c# - 在 C# NET 中检测应用程序关闭?

转载 作者:太空宇宙 更新时间:2023-11-03 18:45:27 24 4
gpt4 key购买 nike

我正在编写一个小型控制台应用程序(将作为服务运行),它基本上会在 Java 应用程序运行时启动它,如果 Java 应用程序关闭则自行关闭,如果 Java 应用程序关闭则关闭它。

我想我的前两个工作正常,但我不知道如何检测 .NET 应用程序何时关闭,以便我可以在此之前关闭 Java 应用程序。谷歌搜索只返回一堆关于检测 Windows 关闭的内容。

谁能告诉我如何处理该部分以及其余部分是否正常?

namespace MinecraftDaemon
{
class Program
{
public static void LaunchMinecraft(String file, String memoryValue)
{
String memParams = "-Xmx" + memoryValue + "M" + " -Xms" + memoryValue + "M ";
String args = memParams + "-jar " + file + " nogui";
ProcessStartInfo processInfo = new ProcessStartInfo("java.exe", args);
processInfo.CreateNoWindow = true;
processInfo.UseShellExecute = false;

try
{
using (Process minecraftProcess = Process.Start(processInfo))
{
minecraftProcess.WaitForExit();
}
}
catch
{
// Log Error
}
}

static void Main(string[] args)
{
Arguments CommandLine = new Arguments(args);

if (CommandLine["file"] != null && CommandLine["memory"] != null)
{
// Launch the Application
LaunchMinecraft(CommandLine["file"], CommandLine["memory"]);
}
else
{
LaunchMinecraft("minecraft_server.jar", "1024");
}
}
}
}

最佳答案

您需要在 Main 方法中注册此事件:

Application.ApplicationExit += new EventHandler(AppEvents.OnApplicationExit);

并添加事件处理程序

public void OnApplicationExit(object sender, EventArgs e)
{
try
{
Console.WriteLine("The application is shutting down.");
}
catch(NotSupportedException)
{
}
}

关于c# - 在 C# NET 中检测应用程序关闭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4718296/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com