根据process进程id判断进程是否存在,Java
Posted zhangphil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了根据process进程id判断进程是否存在,Java相关的知识,希望对你有一定的参考价值。
根据process进程id判断进程是否存在,Java
List<Long> pids = new ArrayList<>();
ProcessHandle.allProcesses()
.limit(1000)
.forEach(new Consumer<ProcessHandle>()
@Override
public void accept(ProcessHandle processHandle)
pids.add(processHandle.pid());
);
boolean alive = false;
for (long l : pids)
if (l == pid)
alive = true;
break;
以上是关于根据process进程id判断进程是否存在,Java的主要内容,如果未能解决你的问题,请参考以下文章