# 列出所有端口
netstat -ano

# 查看被占用端口对应的PID
netstat -aon|findstr "8080"

# 查看是PID对应的进程名称
tasklist|findstr "1234"