windows 查找和结束进程

1)查看占用8080端口的进程号

netstat –aon | findstr “8080”  或者 netstat –aon | find “8080”  

2)结束进程

taskkill /PID 8080 -t -f

原文地址:https://www.cnblogs.com/RoyalBlue/p/13540126.html