我在这里下载了BluetoothChat示例项目:
https://android.googlesource.com/platform/development/+/master/samples/BluetoothChat?autodive=0%2F
事实是,当我在两个设备(未配对)上启动应用程序时,它应该连接两个设备,而无需要求将两个设备配对,不是吗?
实际上,当我尝试连接两个设备(未配对)时,它要求配对设备。
我的意思是,BluetoothChatService.java中有此功能,应该创建一个不安全的套接字。但是看来,这没有完成他的工作吗?
/**
* This thread runs while attempting to make an outgoing connection
* with a device. It runs straight through; the connection either
* succeeds or fails.
*/
private class ConnectThread extends Thread {
private final BluetoothSocket mmSocket;
private final BluetoothDevice mmDevice;
private String mSocketType;
public ConnectThread(BluetoothDevice device, boolean secure) {
mmDevice = device;
BluetoothSocket tmp = null;
mSocketType = secure ? "Secure" : "Insecure";
// Get a BluetoothSocket for a connection with the
// given BluetoothDevice
try {
if (secure) {
tmp = device.createRfcommSocketToServiceRecord(
MY_UUID_SECURE);
} else {
tmp = device.createInsecureRfcommSocketToServiceRecord(
MY_UUID_INSECURE);
}
} catch (IOException e) {
Log.e(TAG, "Socket Type: " + mSocketType + "create() failed", e);
}
mmSocket = tmp;
}
有人可以解释一下为什么要求配对两个设备吗?
方法createInsecureRfcommSocketToServiceRecord不应要求配对未配对的设备,应该吗? X)
我真的很困惑。
最佳答案
createInsecureRfcommSocketToServiceRecord()
具有的
设备用于通信的 key “不安全”,在蓝牙2.1以下,未加密。那就是“不安全”。
但是,这不会改变以下事实:如果配对数据库中尚未存在MAC地址,则始终会出现提示。
是的,它将提示。