Якщо ви не заперечуєте використовуваний порт, вкажіть порт конструктору ServerSocket 0 на 0, і він прослухає будь-який вільний порт.
ServerSocket s = new ServerSocket(0);
System.out.println("listening on port: " + s.getLocalPort());
Якщо ви хочете використовувати певний набір портів, то найпростіший спосіб - це, мабуть, повторити їх, поки один не працює. Щось на зразок цього:
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");
}
Можна використовувати так:
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");
}