在window10上开发程序,有时候因为操作问题导致端口占用,所以要找到端口占用进程,并将该进程杀死
netstat -aon|findstr "7070"
tasklist|findstr "2864"
taskkill /f /t /im java.exe