根据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的主要内容,如果未能解决你的问题,请参考以下文章

判断进程状态

C#winform 有关判断进程的问题

Python3判断shell下进程是否存在&&启动&&邮件通知

process credentials

如何取得某进程的句柄 = =?谢谢了

linux怎么判断一个进程是不是存在