当Java程序停止时停止外部程序

发布于 2024-11-12 17:03:54 字数 165 浏览 1 评论 0原文

我正在执行一个与 Java 一起运行的外部程序,使用以下方法:

Process p = Runtime.getRuntime().exec("/path/to/binary");

当我停止 Java 应用程序时,外部程序继续运行,但我希望它也停止。

I'm executing an external program which runs alongside Java using this:

Process p = Runtime.getRuntime().exec("/path/to/binary");

When I stop the Java application, the external program continues to run but I want this to stop too.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

趁年轻赶紧闹 2024-11-19 17:03:54

要触发关闭,您可以向 Java 应用程序添加关闭挂钩。请参阅运行时。 addShutdownHook()

要实现关闭,您可以向外部进程发出优雅停止的请求,或者调用 Process.destroy()

To trigger the shutdown, you could add a shutdown hook to your Java application. See Runtime.addShutdownHook().

To effect the shutdown, you could either communicate to the external process a request to stop gracefully, or call Process.destroy()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文