从C#Console应用程序中杀死Java进程

时间:2011-01-18 17:15:33

标签: c# java .net process

我讨厌再次发布这个帖子,但我回答了自己的最后一篇帖子,以为我修了它(我没有)。基本上当我的c#.NET应用程序关闭时,我想删除它创建的正在运行的Java进程。最初的问题是我试图将processID保存到静态类成员变量(显然没有用)。我在网上找到了一个Global Class示例并使用了它,但它仍然没有关闭该过程。

调试它无法正常工作。我想它只是创建一个新的应用程序实例而不是运行我构建的实例,甚至将工作目录设置为“Bin”目录也行不通。所以我现在只需要从Bin目录运行我的.exe。

namespace MinecraftDaemon
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Starting Minecraft Daemon...");

            Arguments CommandLine = new Arguments(args);

            // Hook ProcessExit Event
            AppDomain.CurrentDomain.ProcessExit += new EventHandler(Current_ProcessExit);

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

        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))
                {
                    GlobalClass.ProcessID = minecraftProcess.Id;
                    Console.WriteLine("Process ID is " + GlobalClass.ProcessID);
                    minecraftProcess.WaitForExit();
                }
            }
            catch
            {
                // Log Error
            }
        }

        static void Current_ProcessExit(object sender, EventArgs e)
        {
            // Loop the Current Windows Processes
            foreach (Process winProcess in Process.GetProcesses())
            {
                Console.WriteLine("WinProcessID is " + winProcess.Id + " GlobalClass.ProcessID is " + GlobalClass.ProcessID);

                // If this is our Process, shut it down
                if (winProcess.Id == GlobalClass.ProcessID)
                {
                    Process.GetProcessById(GlobalClass.ProcessID).Kill();
                }
            }
        }
    }
}

1 个答案:

答案 0 :(得分:0)

这是通过从捕获事件AppDomain.CurrentDomain.ProcessExit切换到使用SetConsoleCtrlHandler();

来解决的。