如何查询iPhone当前的IP地址?
如何查询iPhone当前的IP地址?
How do I query the iPhone's current IP address?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何查询iPhone当前的IP地址?
How do I query the iPhone's current IP address?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以尝试使用类似此服务:
Whatismyip 并捕获字符串 :)
感谢 Erica Sadun 的 iPhone Developer's Cookbok,第 2 版,第 555 页。
You can try to use similar to this service:
Whatismyip and capture the string :)
Credit to Erica Sadun's iPhone Developer's Cookbok, 2nd ed, page 555.
如果您想要外部 IP 地址(用于从本地网络外部连接的 IP 地址),则需要查询外部网络上的服务器。快速搜索得到以下结果:http://checkip.dyndns.org,http://www.whatismyip.com。使用例如加载页面非常简单
并进行一些字符串操作来检索 IP 地址。
如果您想要内部 IP 地址(例如通过 DHCP 分配给您的设备的 IP 地址),您通常可以做的是解析设备的主机名,即
If you want the external IP address (the one used to connect from outside the local network), you need to query a server on the external network. A quick search yielded the following: http://checkip.dyndns.org, http://www.whatismyip.com. It is quite simple to load the page using e.g.
and do some string manipulation to retrieve the IP address.
If you want the internal IP address (the one assigned e.g. by DHCP to your device), what you can usually do is to resolve the device's hostname, i.e.