如何获取局域网内的IP地址列表?
我的 Android 手机已连接到 LAN。
Java中有没有办法获取LAN IP列表?
我想获取此列表,因为我的应用程序必须连接到 LAN 计算机上的 SQL Server 才能同步某些数据。
有人可以帮助我吗?
My Android Phone is connected to a LAN.
There is a way in Java to get the list of LAN IPs?
I would like to get this list because my app has to connect to a SQL Server on a LAN Machine to syncronize some datas.
Could someone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试从 Java 应用程序启动 shell 命令:
nmap 192.168.1.*
但我还没有尝试过!
You can try to launch a shell command from your Java application:
nmap 192.168.1.*
But I haven't tryied!
没有,但有一些方法可以在不知道 IP 地址的情况下广告/定位服务。寻找 Zeroconf(Apple 称之为 bonjour)。微软有一个替代方案,UPNP。
大多数应用程序似乎放弃了,只是要求用户输入 IP 地址。
There isn't, but there are ways to advertise/locate a service without knowing the IP address. Look for zeroconf (what Apple calls bonjour). Microsoft has an alternative, UPNP.
Most apps seem to give up and simply ask the user to type in the IP address.