Kullanılan bağlantı noktasının sakıncası yoksa, ServerSocket yapıcısına 0 bağlantı noktası belirtin; bu bağlantı noktası herhangi bir boş bağlantı noktasını dinler.
ServerSocket s = new ServerSocket(0);
System.out.println("listening on port: " + s.getLocalPort());
Belirli bir bağlantı noktası kümesi kullanmak istiyorsanız, en kolay yol muhtemelen biri çalışana kadar bunları tekrarlamaktır. Bunun gibi bir şey:
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");
}
Şu şekilde kullanılabilir:
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");
}