import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.InetAddress;
import java.net.UnknownHostException;
public class Scan2 {
public static void main(String[] args) throws IOException {
InetAddress address=InetAddress.getLocalHost();
System.out.println(address.getHostAddress());
String locahost=address.getHostAddress();
int end=locahost.lastIndexOf('.');
String head=locahost.substring(0, end+1);
System.out.println(">>>>"+head);
// head=" 192.168.100.";
head="172.22.40.";
Fast fast=new Fast();
fast.head=head;
for(int k=0;k<10;k++)
{
Thread thread=new Thread(fast);
thread.start();
}
}
}
class Fast implements Runnable {
String head="";
public void run() {
synchronized (this) {
for(int ii=1;ii<255;ii++)
{
String ip=head+ii;
Process process = null;
BufferedReader bufReader = null;
String bufReadLineString = null;
try {
process = Runtime.getRuntime().exec(
"ping " + ip );
bufReader = new BufferedReader(new InputStreamReader(
process.getInputStream()));
bufReadLineString = bufReader.readLine();
// System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"+InetAddress.getByName(ip).getHostName());
while(bufReadLineString!=null)
{
System.out.println(bufReadLineString);
bufReadLineString = bufReader.readLine();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
}
正在 Ping 172.22.40.1 具有 32 字节的数据:
来自 172.22.40.25 的回复: 无法访问目标主机。
来自 172.22.40.25 的回复: 无法访问目标主机。
来自 172.22.40.25 的回复: 无法访问目标主机。
来自 172.22.40.25 的回复: 无法访问目标主机。
172.22.40.1 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
正在 Ping 172.22.40.2 具有 32 字节的数据:
来自 172.22.40.25 的回复: 无法访问目标主机。
来自 172.22.40.25 的回复: 无法访问目标主机。
来自 172.22.40.25 的回复: 无法访问目标主机。
来自 172.22.40.25 的回复: 无法访问目标主机。
172.22.40.2 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
正在 Ping 172.22.40.3 具有 32 字节的数据:
来自 172.22.40.3 的回复: 字节=32 时间=3ms TTL=255
来自 172.22.40.3 的回复: 字节=32 时间=1ms TTL=255
来自 172.22.40.3 的回复: 字节=32 时间=2ms TTL=255
来自 172.22.40.3 的回复: 字节=32 时间=1ms TTL=255
172.22.40.3 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
往返行程的估计时间(以毫秒为单位):
最短 = 1ms,最长 = 3ms,平均 = 1ms
正在 Ping 172.22.40.4 具有 32 字节的数据:
来自 172.22.40.4 的回复: 字节=32 时间=5ms TTL=255
来自 172.22.40.4 的回复: 字节=32 时间=2ms TTL=255
来自 172.22.40.4 的回复: 字节=32 时间=1ms TTL=255
来自 172.22.40.4 的回复: 字节=32 时间=5ms TTL=255
172.22.40.4 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
往返行程的估计时间(以毫秒为单位):
最短 = 1ms,最长 = 5ms,平均 = 3ms