且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

查看特定端口的命令行

更新时间:2023-01-15 19:24:00

这里是端口查找的简单解决方案...

Here is the easy solution of port finding...

在cmd中:

netstat -na | find "8080"

在 bash 中:

netstat -na | grep "8080"

在 PowerShell 中:

In PowerShell:

netstat -na | Select-String "8080"