1.查询所有正在运行端口
netstat -ano
2.查询被占用端口
netstat -aon|findstr "8133"
3.查询占用端口应用
tasklist|findstr "10352"
4.结束被占用端口进程
taskkill /T /F /PID 10352