Java Example - Check if a port is in use
The following example demonstrates how to detect whether the port is already in use:
/* author by w3cschool.cc Main.java */import java.net.*;import java.io.*;public class Main { public static void main(String[] args) { Socket Skt; String host = "localhost"; if (args.length > 0) { host = args[0]; } for (int i = 0; i < 1024; i++) { try {System.out.println("查看 "+ i);Skt = new Socket(host, i);System.out.println("端口 " + i + " 已被使用"); } catch (UnknownHostException e) {System.out.println("Exception occured"+ e);break; } catch (IOException e) { } } }}
The output result of running the above code is:
……查看 17查看 18查看 19查看 20查看 21端口 21 已被使用查看 22查看 23查看 24……