1. netstat -ano|findstr “8070” 查看端口号占用
    2. tasklist | findstr “pid” 查看进程的映像名称
    3. taskkill /f /t /im java.exe 杀掉进程(进程名)
    4. taskkill /f /pid 14352 杀掉进程(pid)