作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在 android 中通过蓝牙发送图像,想获取图像发送到的设备的 MAC 地址。
请在下面找到我的代码。
private void bluetoothadd(){
BluetoothAdapter mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if (mBluetoothAdapter == null) {
// Device does not support Bluetooth
Log.e("Bluetooth ","not found");
}
if (!mBluetoothAdapter.isEnabled()) {
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivity(enableBtIntent);
Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
// If there are paired devices
if (pairedDevices.size() > 0) {
// Loop through paired devices
for (BluetoothDevice device : pairedDevices) {
Log.e("Mac Addressess","are: "+mBluetoothAdapter.getRemoteDevice(device.getAddress()));
}
}
}
}
我正在获取所有配对设备的 MAC 地址。我只需要数据正在传输到的设备的 MAC 地址。
最佳答案
使用这个:
BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address);
关于android - 如何在android中获取蓝牙连接设备的MAC地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19315523/
我是一名优秀的程序员,十分优秀!