最近在写java的socket编程,有时候不小心直接重新启动。就会提示java.net.BindException: Address already in use: JVM_Bind。
所以在网上找了下怎么在window下关闭端口!
1:查看特定端口被占用情况
命令: netstat -ano 和 netstat -ano|findstr 端口号
netstat -ano:查看电脑所有端口被占用的情况:
netstat -ano|findstr 端口号:查看特定端口被占用情况
2:关闭占用端口的程序
命令 :taskkill /pid PID(进程号) /f
posted on 2020-04-13 10:14
Terry Zou 阅读(252)
评论(0) 编辑 收藏