来自 Apache Commons Exec 的进程对象
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅http://commons.apache.org/exec/apidocs/index.html
接口 CommandLauncher 包含多个返回
Process
的exec
方法。但无论如何你没有任何方法来控制进程 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 returnProcess
.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.