1.


2.

 2-1.

1
2
3
>netstat -ano |find "LISTENING" |find "8080"
  TCP    127.0.0.1:8080         0.0.0.0:0              LISTENING       14364
 
cs


 2-2.

1
2
3
>netstat -ano |findstr 8080
  TCP    127.0.0.1:8080         0.0.0.0:0              LISTENING       14364
 
cs


+ Recent posts