windows下查看java进程
2020-08-15 本文已影响0人
成功在于实践
wmic process where caption="java.exe" get processid,caption,commandline /value
tasklist /fi "imagename eq java.exe"

tasklist | findstr "java"

netstat -aont | findstr "24572 " > c:\2001.log

wmic process where caption="java.exe" get processid,caption,commandline /value
tasklist /fi "imagename eq java.exe"
tasklist | findstr "java"
netstat -aont | findstr "24572 " > c:\2001.log