扫描端口

扫描端口
 
  1. import java.net.*;  
  2. import java.io.*;  
  3.   
  4. public class PortScan {  
  5.     public static void main(String[] args) {  
  6.         String host = "localhost";  
  7.         if (args.length > 0) {  
  8.             host = args[0];  
  9.         }  
  10.         // 扫描端口号小于1024的端口  
  11.         for (int i = 1; i < 1024; i++) {  
  12.             try {  
  13.                 Socket s = new Socket(host, i);  
  14.                 System.out.println("There is a server on port " + i + " of "  
  15.                         + host);  
  16.             } catch (UnknownHostException e) {  
  17.                 System.err.println(e);  
  18.                 break;  
  19.             } catch (IOException e) {   
  20.             }  
  21.         }  
  22.     }  
  23. }  

你可能感兴趣的:(java,.net,socket)