以Win7为例,可以用如下方法找出某个端口是否被其他进程占用:netstat -aon|findstr "8081" 发现8081端口被PID为5900的进程占用,
tasklist |findstr "5900" 发现该进程为javaw.exe(运行java程序的进程)。