Jika Anda tidak keberatan dengan port yang digunakan, tentukan port 0 ke konstruktor ServerSocket dan port tersebut akan mendengarkan pada port gratis apa pun.
ServerSocket s = new ServerSocket(0);
System.out.println("listening on port: " + s.getLocalPort());
Jika Anda ingin menggunakan satu set port tertentu, maka cara termudah mungkin untuk beralih melalui mereka sampai satu berfungsi. Sesuatu seperti ini:
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");
}
Dapat digunakan seperti ini:
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");
}