Source Code : Looking for Port: start from 65535
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Looking for Port: start from 65535
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import java.net.UnknownHostException;
public class lookForPorts3 {
public static void main(String[] args) {
Socket theSocket;
String host = "localhost";
if (args.length > 0) {
host = args[0];
}
try {
InetAddress theAddress = InetAddress.getByName(host);
for (int i = 1; i <= 65535; i++) {
try {
theSocket = new Socket(host, i);
System.out.println("There is a server on port " + i + " of " + host);
theSocket.close();
} catch (IOException e) {
// must not be a server on this port
}
}
} catch (UnknownHostException e) {
System.err.println(e);
}
}
}
Thank with us