wmic process where "name like '%java%'" get commandline,processid
查询 java 进程:
netstat -ano | findstr 9998(以9998端口号为例)
关闭java进程
taskkill /F /PID PID
wmic process where "name like '%java%'" get commandline,processid
查询 java 进程:
netstat -ano | findstr 9998(以9998端口号为例)
关闭java进程
taskkill /F /PID PID