查端口的几个常用指令 1.查看所有的端口占用情况netstat -ano2.查看指定端口的占用情况netstat -aon|findstr "8888"3.查看PID对应的进程tasklist|findstr "2016"4.结束进程taskkill /f /t /im java.exe