如何使用 Win32 API 获取 (Java) 进程的退出代码?
如何从启动该 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 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
该函数的 MSDN 文档 使它变得相当明确它不会从被调用的应用程序返回退出代码。
似乎有一些获取退出状态 也在 MSDN 上。
The MSDN docs for that function make it quite clear that it does not return the exit codes from the called application.
There appears to be some example code for getting exit status at MSDN as well.