FileDocCategorySizeDatePackage
PortScanner.javaAPI DocExample1027Sun Dec 12 10:53:18 GMT 2004None

PortScanner

public class PortScanner extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

    
    String host = "localhost";

    if (args.length > 0) {
      host = args[0];
    }

    try {
      InetAddress theAddress = InetAddress.getByName(host);
      for (int i = 1; i < 65536; i++) {
        Socket connection = null;
        try {
          connection = new Socket(host, i);
          System.out.println("There is a server on port " 
           + i + " of " + host);
        }
        catch (IOException e) {
           System.out.println("No server on port " 
           + i + " of " + host);
          // must not be a server on this port
        }
        finally {
          try {
            if (connection != null) connection.close(); 
          }
          catch (IOException e) {}
        }
      } // end for
    } // end try
    catch (UnknownHostException e) {
      System.err.println(e);
    }