当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:13:00  来源:本站整理

扫描整个网段的Java多线程程序[Java编程]

赞助商链接



  本文“扫描整个网段的Java多线程程序[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

扫描500个IP10秒钟左右, 一个IP等候0.3秒

说来惭愧, 我认为是用java写的历程编程, 少贴一点仅供参考:

package steeven;
import java.sql.*;
import java.io.*;
import java.util.*;
import java.text.*;
import javax.servlet.http.*;
public class Ip extends Common implements Runnable{
public String ip; // IP, 用户名, 主机名
ResultSet list; // 分页显示的记录集
public Ip cur; // 分页显示的当前记录
static public Hashtable ping = new Hashtable(); //ping 后的后果集
static int threadCount = 0; //当前线程的数目, 避免过量线程摧毁电脑
public Ip() {}
public Ip(String ip){
this.ip=ip;
Thread r = new Thread(this);
r.start();
}
public static void Ping(String ip) throws Exception{
//最多30个线程
while(threadCount>30)
Thread.sleep(50);
threadCount +=1;
Ip p = new Ip(ip);
}
public void PingAll() throws Exception{
threadCount =0;
ping = new Hashtable();
while(next()) //next()对全部局域网Ip放到cur
Ping(cur.ip);
//等着全部Ping完毕
while(threadCount>0)
Thread.sleep(50);
}
public void run(){
try{
Process p= Runtime.getRuntime().exec ("ping "+ip+ " -w 300 -n 1");
InputStreamReader ir = new InputStreamReader(p.getInputStream());
LineNumberReader input = new LineNumberReader (ir);
//读取后果行
for (int i=1 ; i<7; i++)
input.readLine();
String line= input.readLine();
if (line.length()<17 || line.substring(8,17).equals("timed out"))
ping.put(ip,new Boolean(false));
else
ping.put(ip,new Boolean(true));
//线程完毕
threadCount -= 1;
}catch (IOException e){}
}
public static void main(String[] args) throws Exception{
Ip ip= new Ip();
ip.PingAll();
java.util.Enumeration key = ping.keys();
String k;
while((k = (String)key.nextElement()) != null)
System.out.println(k+": "+ping.get(k));
}
}

1. 操纵Ping对比笨拙, 但是相对简单些

2. 假如Ping 成功后, 用nbtstat还可以得到主机名, 当前用户名, MAC地址...一切尽在掌握中 :)


  以上是“扫描整个网段的Java多线程程序[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 扫描整个网段的Java多线程程序
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .