用java程序编写ip仿真器_用java 编写一个可以实现IP地址查询功能的课程设计

该博客提供了使用Java编程实现获取本机IP地址的方法,并给出了一种Windows环境下扫描局域网IP的解决方案。代码包括了获取本机IP的函数和一个用于扫描并检测局域网内活跃IP的多线程程序,但在Unix系统下可能存在兼容性问题。然而,用户反馈代码运行后只显示本机IP,未能展示局域网中的其他机器IP。
摘要由CSDN通过智能技术生成

展开全部

下面是获得本机IP地址的方法,跟你的程序捆绑起来,互相发送消息的时候直接将IP发送过去

private static String[] getAllLocalHostIP(){

32313133353236313431303231363533e78988e69d8331333335316462 List res=new ArrayList();

Enumeration netInterfaces;

try {

netInterfaces = NetworkInterface.getNetworkInterfaces();

InetAddress ip = null;

while (netInterfaces.hasMoreElements()) {

NetworkInterface ni = (NetworkInterface) netInterfaces.nextElement();

Enumeration nii=ni.getInetAddresses();

while(nii.hasMoreElements()){

ip = (InetAddress) nii.nextElement();

if (ip.getHostAddress().indexOf(":") == -1) {

res.add(ip.getHostAddress());

}

}

}

} catch (SocketException e) {

e.printStackTrace();

}

return (String[])res.toArray(new String[0]);

}

这是个扫描局域网ip的windows解决方案,在unix系统下可能有问题

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.net.InetAddress;

import java.net.UnknownHostException;

import java.util.ArrayList;

public class LanIP {

public ArrayList getLanIPArrayList() {

ArrayList arrayIP = null;

try {

InitSystem initSystem = null;

initSystem = new InitSystem();

Thread thread = new Thread(initSystem);

thread.start();

thread.join();

arrayIP = initSystem.getArrayIPUsed();

} catch (UnknownHostException e) {

e.printStackTrace();

} catch (InterruptedException e) {

e.printStackTrace();

}

return arrayIP;

}

private class InitSystem implements Runnable {

private int firstIP = 2;// 查询的 IP 地址的最后一位起始点

private int lastIP = 255;// 查询的 IP 地址的最后一位结束点

private volatile ArrayList arrayThread;// 子线程段

private final int MAXTHREADNUM = 30; // 最大同时进行的子线程数量

private int threadNumNow;// 当前正在进行的子线程数量

private volatile ArrayList arrayIP;// 局域网查询所有可能的 IP 地址的结果集

private volatile ArrayList arrayIPUsed;// 局域网查询已经使用的 IP 地址的结果集

private InitSystem(String ip) {

arrayIP = new ArrayList();

arrayIPUsed = new ArrayList();

arrayThread = new ArrayList();

setIPAddressList(ip);

}

private InitSystem() throws UnknownHostException {

this(InetAddress.getLocalHost().getHostAddress());

}

private synchronized ArrayList getArrayIPUsed() {

try {

while (arrayIP.size() > 0) {

Thread.sleep(300);

}

} catch (InterruptedException e) {

e.printStackTrace();

}

return arrayIPUsed;

}

private void setIPAddressList(String ip) {

// 根据这个 ip 地址查询它所在的局域网的所有可能 IP 地址的集合

int lastPointIndex = ip.lastIndexOf('.');

String stringIPHead = ip.substring(0, ++lastPointIndex);

String stringIP = null;

for (int i = firstIP; i <= lastIP; i++) {

stringIP = stringIPHead + i;

arrayIP.add(stringIP);

}

}

public void run() {

synchronized (this) {

try {

while (arrayIP.size() > 0) {

while (threadNumNow >= MAXTHREADNUM) {

for (Thread thread : arrayThread) {

if (!thread.getState().equals(

Thread.State.TERMINATED)) {

thread.join(5);

}

--threadNumNow;

}

arrayThread = new ArrayList();

}

Thread thread = new Thread(new InnerClass(arrayIP

.remove(0)));

thread.start();

threadNumNow++;

arrayThread.add(thread);

}

} catch (Exception e) {

e.printStackTrace();

}

}

}

private class InnerClass implements Runnable {

// 线程查询一个 IP 是否是可以连接的 是则加入到相应的 IP 数组

private String ip;

private InnerClass(String ip) {

this.ip = ip;

}

private boolean isUsedIPAddress(String ip) {

synchronized (this) {

// 判断这个 IP 地址在当前局域网中是否是可连接的 IP

Process process = null;

BufferedReader bufReader = null;

String bufReadLineString = null;

try {

process = Runtime.getRuntime().exec(

"ping " + ip + " -w 100 -n 1");

bufReader = new BufferedReader(new InputStreamReader(

process.getInputStream()));

for (int i = 0; i < 6 && bufReader != null; i++) {

bufReader.readLine();

}

bufReadLineString = bufReader.readLine();

if (bufReadLineString == null) {

process.destroy();

return false;

}

if (bufReadLineString.indexOf("timed out") > 0

|| bufReadLineString.length() < 17

|| bufReadLineString.indexOf("invalid") > 0) {

process.destroy();

return false;

}

} catch (IOException e) {

e.printStackTrace();

}

process.destroy();

return true;

}

}

public void run() {

synchronized (this) {

if (isUsedIPAddress(ip)) {

arrayIPUsed.add(ip);

}

}

}

}

}

}

追问

你好,为什么我把上面的扫描局域网ip的windows解决方案的代码写下来之后,运行的结果还是显示本机的IP地址,而我需要的是显示局域网当中存在的其他机器IP地址,求解答,谢谢

2Q==

已赞过

已踩过<

你对这个回答的评价是?

评论

收起

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值