Programming Tutorials

Comment on Tutorial - Simple Port Scanner application using Java By Syed M Hussain



Comment Added by : Frantisek

Comment Added at : 2012-05-07 07:30:41

Comment on Tutorial : Simple Port Scanner application using Java By Syed M Hussain
If you want, which programm is running on port (on Windows OS), you can use commands "netstat -ano" and "wmic process where ProcessId=PID get name". First command return information about ID of programms which running on ports. Second command get information about programm by PID. Example is on page: http://java-cool.blogspot.com/2012/05/checking-port-java-application.html

View Tutorial