Java 9给Process API引入了多种改进,其中新增了ProcessHandler类,它提供了进程相关的信息,如pid,父进程,子进程,进程开始时间以及累计cpu时间等。
这里使用Java 9的jshell简单演示下Process的使用:
jshell> Process p = new ProcessBuilder("stress", "--cpu", "4", "--timeout", "5").start();
p ==> Process[pid=5572, exitValue="not exited"]
jshell> p.pid()
$2 ==> 11542
jshell> p.info().user()
$3 ==> Optional[ccs]
jshell> p.info().command()
$4 ==> Optional[/usr/bin/stress]
jshell> p.info().commandLine()
$5 ==> Optional[/usr/bin/stress --cpu 4 --timeout 120]
jshell> Arrays.toString(p.info().arguments().get())
$6 ==> "[--cpu, 4, --timeout, 120]"
jshell> p.info().startInstant()
$7 ==> Optional[2018-02-26T10:31:53.642Z]
jshell> p.info().totalCpuDuration().get().toMillis()
$8 ==> 0
获取所有运行的进程
ProcessHandler提供了一个静态方法allProcesses(),它返回所有进程的一个Stream。输出所有进程示例:
ProcessHandle.allProcesses()
.map(ProcessHandle::info)
.map(ProcessHandle.Info::commandLine)
.flatMap(Optional::stream)
.forEach(System.out::println)
进程退出触发函数
Process的onExit()方法可以让我们在进程退出时执行一些函数处理:
Process proc = new ProcessBuilder("sleep", "10").start();
proc.onExit()
.thenAccept(p -> System.out.println("Process " + p.pid() + " exited with " + p.exitValue()));