如何使用 Win32 API 获取 (Java) 进程的退出代码?

发布于 2024-07-17 04:54:26 字数 123 浏览 10 评论 0原文

如何从启动该 JVM 的 Windows 程序中获取 JVM 退出代码(调用 System.exit(status) 中的“状态”值)? 我尝试使用 ShellExecute() 调用的结果,但结果 (42) 与状态的实际值无关。

How can I obtain the JVM exit code (value of 'status' from call: System.exit(status)) from a Windows program which started this JVM? I tried to use result from the ShellExecute() call, but the result (42) was independent of real value of status.

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

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

发布评论

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

评论(2

思念满溢 2024-07-24 04:54:26

使用 ShellExecuteEx 而不是 ShellExecute 启动外部应用程序。

在调用 ShellExecuteEx 之前,请在 ShellExecuteEx 函数的参数中启用 SEE_MASK_NOCLOSEPROCESS 标志。 然后,您将在 ShellExecuteEx 函数参数的 hProcess 字段中收到已启动进程的句柄。

ShellExecuteEx: http://msdn.microsoft.com/en -us/library/bb762154(VS.85).aspx

然后,使用 WaitForSingleObject 函数或任何其他 WaitFor* 函数等待外部应用程序终止。

WaitForSingleObject: http://msdn.microsoft.com/en-us/library/ ms687032.aspx

然后,使用GetExitCodeProcess函数读取外部进程的退出代码。

GetExitCodeProcess: http://msdn.microsoft.com/en -us/library/ms683189(VS.85).aspx

Start the external application by using ShellExecuteEx instead of ShellExecute.

Before calling ShellExecuteEx, enable the SEE_MASK_NOCLOSEPROCESS flag in the parameter to the ShellExecuteEx function. You will then receive a handle to the started process in the hProcess field of the parameter to the ShellExecuteEx function.

ShellExecuteEx: http://msdn.microsoft.com/en-us/library/bb762154(VS.85).aspx

Then, use the WaitForSingleObject function or any other WaitFor* function to wait until the external application is terminated.

WaitForSingleObject: http://msdn.microsoft.com/en-us/library/ms687032.aspx

Then, use the GetExitCodeProcess function to read the exit code of the external process.

GetExitCodeProcess: http://msdn.microsoft.com/en-us/library/ms683189(VS.85).aspx

雪花飘飘的天空 2024-07-24 04:54:26

该函数的 MSDN 文档 使它变得相当明确它不会从被调用的应用程序返回退出代码。

如果函数成功,则返回一个
值大于 32。如果函数
失败,它返回一个错误值
指示失败的原因。
返回值被转换为
HINSTANCE 用于向后兼容
与 16 位 Windows 应用程序。 它
然而,这并不是真正的实例。 它
只能转换为 int 且
与 32 或以下相比
错误代码如下。

似乎有一些获取退出状态 也在 MSDN 上。

The MSDN docs for that function make it quite clear that it does not return the exit codes from the called application.

If the function succeeds, it returns a
value greater than 32. If the function
fails, it returns an error value that
indicates the cause of the failure.
The return value is cast as an
HINSTANCE for backward compatibility
with 16-bit Windows applications. It
is not a true HINSTANCE, however. It
can be cast only to an int and
compared to either 32 or the following
error codes below.

There appears to be some example code for getting exit status at MSDN as well.

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