确定 iPhone 和 Android 的唯一蓝牙 MAC 地址
是否可以从所述设备上的应用程序中确定 iPhone 和 Android(以及较小程度上的其他智能手机)的唯一蓝牙 MAC 地址?我的 MAC 地址普遍唯一的假设正确吗?
一般性的“是”或“否”会有帮助。 iPhone 或 Android 的示例代码将非常有帮助。
Is it possible to determine the unique bluetooth MAC address for an iPhone and an Android (and to a lesser extent, other smartphones) from within an app on said device? Is my assumption that the MAC address is universally unique correct?
A general yes or no would be helpful. Example code in the case of an iPhone or an Android would be extremely helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,蓝牙 MAC 地址始终是唯一的。
在 Android 中,您可以在 BluetoothAdaptor 上使用 getAddress() api。
它以字符串形式返回 MAC 地址。
在 iPhone 上,似乎没有公共 API 来读取 MAC 地址,请参阅此 主题
Yes the bluetooth MAC address will always be unique.
In Android you can use the getAddress() api on the BluetoothAdaptor.
It returns the MAC address as a String.
On iPhone it looks like there is no public API to read the MAC address , see this thread
Android
阅读开发指南的蓝牙部分,特别是 连接设备。
Android
Read up on the Bluetooth section of dev guide, specifically Connecting Devices.