使用 Bonjour 获取设备 IP
我使用 Java 6 update 14 和 NetBeans 6.7 进行开发。 我正在创建一个示例客户端来使用 Bonjour 检测特定类型的服务。
我面临一个特定的挑战,我想获取设备的 IP 地址。 但是 ResolveListener.serviceResolved(...) 函数,仅提供 Hostname 和 Port。 FullName也不包含设备的IP信息。 是否可以使用Bonjour SDK获取设备的IP地址? 如果是,怎么办?
谢谢。
I am using Java 6 update 14 for development and NetBeans 6.7. I am creating a sample client to detect particular type of service using Bonjour.
I face a certain challenge where I want to get the IP address of the device. But the ResolveListener.serviceResolved(...) function, provides only Hostname and Port. The FullName also does not contain IP information of the device. Is it possible to obtain the IP address of the device using Bonjour SDK? If yes, how?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用标准Java InetAddress 类来解析主机名到 IP 地址。 ZeroConf(Bonjour 是 Apple 的实现)相当合理地通过主机名抽象服务主机。
Use the standard Java InetAddress class to resolve the hostname to an IP address. ZeroConf (Bonjour being Apple's implementation) quite reasonably abstracts service-hosts by hostname.