How do I programmatically determine the availability of a port in a given machine using Java?
i.e given a port number, determine whether it is already being used or not?.
|
|
This is the implementation coming from the Apache camel project:
They are checking the DatagramSocket as well to check if the port is avaliable in UDP and TCP. Hope this helps. |
|||||||||||||||||
|
|
If you're not too concerned with performance you could always try listening on a port using the ServerSocket class. If it throws an exception odds are it's being used.
|
|||||||||||||||
|
|
It appears that as of Java 7, David Santamaria's answer doesn't work reliably any more. It looks like you can still reliably use a Socket to test the connection, however.
|
|||
|
|
|
In my case it helped to try and connect to the port - if service is already present, it would respond.
|
|||
|
|
|
For Java 7 you can use try-with-resource for more compact code:
|
|||
|
|
|
The try/catch socket based solutions , might not yield accurate results (the socket address is "localhost" and in some cases the port could be "occupied" not by the loopback interface and at least on Windows I've seen this test fails i.e. the prot falsely declared as available). There is a cool library named SIGAR , the following code can hook you up :
|
|||||
|