我正在编写一个小型控制台应用程序(将作为服务运行),它在运行时基本启动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");
}
}
}
}
答案 0 :(得分:4)
Ahh MineCraft:)
由于您的控制台应用最终将成为Windows服务,因此请查看OnStop类的OnPowerEvent,onPause,onShutDown和ServiceBase方法。< / p>
答案 1 :(得分:3)
您需要在Main方法中注册此事件:
Application.ApplicationExit += new EventHandler(AppEvents.OnApplicationExit);
并添加事件处理程序
public void OnApplicationExit(object sender, EventArgs e)
{
try
{
Console.WriteLine("The application is shutting down.");
}
catch(NotSupportedException)
{
}
}
答案 2 :(得分:0)
您需要为Application.ApplicationExit事件添加事件处理程序。
答案 3 :(得分:0)
你说它将作为一种服务运行。
在这种情况下,将调用ServiceBase类的受保护方法OnStop()。
http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicebase.onstop(v=VS.85).aspx