目前,我正在尝试处理一个奇怪的异常时,打开蓝牙插座在我的 Nexus 7(2012) ,与 Android 4.3(建立 JWR66Y,我猜第二个4.3更新)。我看到过一些相关的帖子(例如 https://stackoverflow.com/questions/13648373/bluetoothsocket-connect-throwing-exception-read-failed) ,但似乎没有一篇能够解决这个问题。而且,正如在这些线程中建议的那样,重新配对没有任何帮助,不断地尝试连接(通过一个愚蠢的循环)也没有任何效果。
我正在处理一个嵌入式设备(一个未命名的 OBD-II 汽车适配器,类似于 http://images04.olx.com/ui/15/53/76/1316534072_254254776_2-OBD-II-BLUTOOTH-ADAPTERSCLEAR-CHECK-ENGINE-LIGHTS-WITH-YOUR-PHONE-Oceanside.jpg)。我的 Android 2.3.7手机没有任何连接问题,我同事的 Xperia (Android 4.1.2)也可以工作。另一款谷歌 Nexus (我不知道是“ One”还是“ S”,但不知道是否是“4”)在 Android 4.3上也失败了。
下面是连接建立的代码段,它在自己的线程中运行,线程是在服务中创建的。
private class ConnectThread extends Thread {
private static final UUID EMBEDDED_BOARD_SPP = UUID
.fromString("00001101-0000-1000-8000-00805F9B34FB");
private BluetoothAdapter adapter;
private boolean secure;
private BluetoothDevice device;
private List<UUID> uuidCandidates;
private int candidate;
protected boolean started;
public ConnectThread(BluetoothDevice device, boolean secure) {
logger.info("initiliasing connection to device "+device.getName() +" / "+ device.getAddress());
adapter = BluetoothAdapter.getDefaultAdapter();
this.secure = secure;
this.device = device;
setName("BluetoothConnectThread");
if (!startQueryingForUUIDs()) {
this.uuidCandidates = Collections.singletonList(EMBEDDED_BOARD_SPP);
this.start();
} else{
logger.info("Using UUID discovery mechanism.");
}
/*
* it will start upon the broadcast receive otherwise
*/
}
private boolean startQueryingForUUIDs() {
Class<?> cl = BluetoothDevice.class;
Class<?>[] par = {};
Method fetchUuidsWithSdpMethod;
try {
fetchUuidsWithSdpMethod = cl.getMethod("fetchUuidsWithSdp", par);
} catch (NoSuchMethodException e) {
logger.warn(e.getMessage());
return false;
}
Object[] args = {};
try {
BroadcastReceiver receiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
BluetoothDevice deviceExtra = intent.getParcelableExtra("android.bluetooth.device.extra.DEVICE");
Parcelable[] uuidExtra = intent.getParcelableArrayExtra("android.bluetooth.device.extra.UUID");
uuidCandidates = new ArrayList<UUID>();
for (Parcelable uuid : uuidExtra) {
uuidCandidates.add(UUID.fromString(uuid.toString()));
}
synchronized (ConnectThread.this) {
if (!ConnectThread.this.started) {
ConnectThread.this.start();
ConnectThread.this.started = true;
unregisterReceiver(this);
}
}
}
};
registerReceiver(receiver, new IntentFilter("android.bleutooth.device.action.UUID"));
registerReceiver(receiver, new IntentFilter("android.bluetooth.device.action.UUID"));
fetchUuidsWithSdpMethod.invoke(device, args);
} catch (IllegalArgumentException e) {
logger.warn(e.getMessage());
return false;
} catch (IllegalAccessException e) {
logger.warn(e.getMessage());
return false;
} catch (InvocationTargetException e) {
logger.warn(e.getMessage());
return false;
}
return true;
}
public void run() {
boolean success = false;
while (selectSocket()) {
if (bluetoothSocket == null) {
logger.warn("Socket is null! Cancelling!");
deviceDisconnected();
openTroubleshootingActivity(TroubleshootingActivity.BLUETOOTH_EXCEPTION);
}
// Always cancel discovery because it will slow down a connection
adapter.cancelDiscovery();
// Make a connection to the BluetoothSocket
try {
// This is a blocking call and will only return on a
// successful connection or an exception
bluetoothSocket.connect();
success = true;
break;
} catch (IOException e) {
// Close the socket
try {
shutdownSocket();
} catch (IOException e2) {
logger.warn(e2.getMessage(), e2);
}
}
}
if (success) {
deviceConnected();
} else {
deviceDisconnected();
openTroubleshootingActivity(TroubleshootingActivity.BLUETOOTH_EXCEPTION);
}
}
private boolean selectSocket() {
if (candidate >= uuidCandidates.size()) {
return false;
}
BluetoothSocket tmp;
UUID uuid = uuidCandidates.get(candidate++);
logger.info("Attempting to connect to SDP "+ uuid);
try {
if (secure) {
tmp = device.createRfcommSocketToServiceRecord(
uuid);
} else {
tmp = device.createInsecureRfcommSocketToServiceRecord(
uuid);
}
bluetoothSocket = tmp;
return true;
} catch (IOException e) {
logger.warn(e.getMessage() ,e);
}
return false;
}
}
代码在 bluetoothSocket.connect()
出错了。我在做 java.io.IOException: read failed, socket might closed, read ret: -1
。这是 GitHub 上相应的源代码: < a href = “ https://GitHub.com/android/Platform _ Framework _ base/blob/android-4.3 _ r2/core/java/android/bluetooth/BluetoothSocket.java # L504”rel = “ noReferrer”title = “ BluetoothSocket.java # L504”> https://GitHub.com/android/platform_frameworks_base/blob/android-4.3_r2/core/java/android/bluetooth/bluetoothsocket.java#l504
它是通过 readInt ()调用的,调用地址是: http://github.com/android/Platform _ Framework _ base/blob/android-4.3 _ r2/core/java/android/bluetooth/BluetoothSocket.java # L319”rel = “ noReferrer”title = “ BluetoothSocket.java # L319”> https://github.com/android/platform_frameworks_base/blob/android-4.3_r2/core/java/android/bluetooth/bluetoothsocket.java#l319
所使用套接字的一些元数据转储导致以下信息。这些在 Nexus7和我的2.3.7手机上完全一样。
Bluetooth Device 'OBDII'
Address: 11:22:33:DD:EE:FF
Bond state: 12 (bonded)
Type: 1
Class major version: 7936
Class minor version: 7936
Class Contents: 0
Contents: 0
我有一些其他 OBD-II 适配器(更扩展) ,他们都工作。有没有可能,我遗漏了什么,或者这可能是 Android 的一个 bug?