来自 Apache Commons Exec 的进程对象

发布于 2024-12-08 07:11:51 字数 141 浏览 0 评论 0原文

我使用 Apache Commons Exec jar 来创建进程。但是我想控制正在调用的进程的进程 ID。

有没有办法从 Apache Commons Exec api 获取“Process”对象?我没有罚款任何返回“Process 类”的公共方法。

I'm using the Apache Commons Exec jars for creating processes. However I'd like to get control of the process id of processes being invoked.

Is there a way of getting the 'Process' object from the Apache Commons Exec api? I did'nt fine any public methods that returns the 'Process class.

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

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

发布评论

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

评论(1

如果没有你 2024-12-15 07:11:51

请参阅http://commons.apache.org/exec/apidocs/index.html

接口 CommandLauncher 包含多个返回 Processexec 方法。

但无论如何你没有任何方法来控制进程 ID:这是操作系统的责任。此外,标准 java API 甚至不允许您检索进程 ID。旧的 java 版本中有一个技巧:Process 的实现包含可以使用反射检索的 int 字段 pid。但这一点在 1.6 版本中发生了变化。

See http://commons.apache.org/exec/apidocs/index.html

Interface CommandLauncher contains several exec methods that return Process.

But anyway you do not have any way to control the process ID: it is the OS responsibility. Moreover standard java API does not allow you even to retrieve the process ID. There was a trick in older java versions: the implementation of Process contained int field pid that could be retrieved using reflection. But this was changed in version 1.6.

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