查询运行的java程序线程总数

(1)方法一
ps -ef|grep java
pstree -p pid|wc -l
安装pstree包,yum install psmisc


(2)方法二
top -H -p pid

你可能感兴趣的:(Linux,linux)