端口扫描程序java实现

王朝java/jsp·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

怎么样扫描计算机系统本地和远程的端口,监测其是打开还是关闭的在很多应用程序中都要用到,下面是用Java实现的简单的端口扫描程序。

Source Code:

--------------------------------------------------------------------------------

/*

* Created on 2005-3-22

*

* TODO To change the template for this generated file go to

* Window - Preferences - Java - Code Style - Code Templates

*/

/**

* @author whandey connect to me: whandey@163.com

*

* TODO To change the template for this generated type comment go to

* Window - Preferences - Java - Code Style - Code Templates

*/

import java.io.*;

import java.net.*;

import java.util.*;

public class SocketPort {

public static void main(String[] args) {

String ip = "159.162.39.27";

String hostname = new String();

try{ //get the target ip address and hostname

InetAddress address = InetAddress.getByName(ip);

System.out.println(address);

hostname = address.getHostName();

System.out.println(hostname);

}

catch(UnknownHostException e)

{

System.out.println("Could not find "+ ip);

}

try

{ // creat the output file

PrintWriter fout = new PrintWriter( new FileWriter("PortInf.txt"));

fout.println("Information Of The Port On the " + hostname +"computer ");

fout.println();

// do ports scan

for(int nport = 25;nport < 30;++nport)

{

try

{

Socket s = new Socket(hostname,nport);

fout.println("The port " + nport + " is open!");

fout.println("Connected to "+ s.getInetAddress() + " on port " + s.getPort() + " from port "+ s.getLocalPort() + " of " + s.getLocalAddress());

//print the connected socket information

}

catch(IOException e)

{

fout.println("The port " + nport + " is closed!");

}

}

fout.close();

}

catch(IOException e){}

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航