查看线程pid
netstat -ano     

 

寻找特定线程pid,如查看8080端口的pid
netstat -ano|findstr 8080

终止线程,如pid为12112时
taskkill /pid 12212 /f

如何在windows杀死某一端口的进程_80端口