我想使用 Java 代码查找当前连接到的本地网络中设备的所有 IP 地址。有用的实用程序Advanced IP Scanner
能够在我的子网中找到各种 IP 地址192.168.178/24
:
根据这个答案,我按照以下方式构建了我的代码:
import java.io.IOException;
import java.net.InetAddress;
public class IPScanner
{
public static void checkHosts(String subnet) throws IOException
{
int timeout = 100;
for (int i = 1; i < 255; i++)
{
String host = subnet + "." + i;
if (InetAddress.getByName(host).isReachable(timeout))
{
System.out.println(host + " is reachable");
}
}
}
public static void main(String[] arguments) throws IOException
{
checkHosts("192.168.178");
}
}
不幸的是,这不会打印出任何结果,这意味着无法访问任何 IP 地址。为什么?Advanced IP Scanner
我的本地网络中有一些设备,如扫描中所见。