Si no le importa el puerto utilizado, especifique un puerto de 0 para el constructor ServerSocket y escuchará en cualquier puerto libre.
ServerSocket s = new ServerSocket(0);
System.out.println("listening on port: " + s.getLocalPort());
Si desea utilizar un conjunto específico de puertos, entonces la forma más fácil es iterar a través de ellos hasta que uno funcione. Algo como esto:
public ServerSocket create(int[] ports) throws IOException {
for (int port : ports) {
try {
return new ServerSocket(port);
} catch (IOException ex) {
continue; // try next port
}
}
// if the program gets here, no port in the range was found
throw new IOException("no free port found");
}
Podría usarse así:
try {
ServerSocket s = create(new int[] { 3843, 4584, 4843 });
System.out.println("listening on port: " + s.getLocalPort());
} catch (IOException ex) {
System.err.println("no available ports");
}