1、查看所有端口情况
C:\>netstat -ano
2、查看指定端口情况
C:\>netstat -aon|findstr "8088"
3、查看端口对应的程序
C:\>tasklist|findstr "8088"
4、解释进程
taskkill /f /t /im port.exe