查看80端口被哪些程序占用了

netstat -ano|findstr "80"

根据pid(进程id) 查询对应的应用程序

tasklist|findstr "1828"

根据名称 结束该程序

taskkill /f /t /im java.exe