标签: java subprocess
如果我们使用Runtime.exec创建一个新的子进程:
Process exec(String command) Executes the specified string command in a separate process.
如何获取已创建进程的值?
答案 0 :(得分:1)
在Java 8(包含)之前,您必须使用workarounds。
从Java 9开始,Process类中有一个新的getPid method。
getPid