我正在尝试使用以下代码连接到黑莓9900手机的蓝牙设备;
public final class AppMainScreen extends MainScreen {
private BluetoothspInfo[] spInfo;
private StreamConnection bConn;
private DataInputStream diStream;
private String text;
public AppMainScreen() {
spInfo = BluetoothSerialPort.getSerialPortInfo();
try {
bConn = (StreamConnection) Connector.open(
spInfo[0].toString(), Connector.READ);
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
UiApplication.getUiApplication().invokeLater(new TextScanner());
}
// ...
// ...
// ...
}
但是它总是抛出异常java.io.IOException: Unable to connect.
我无法完全追踪。
这里有什么问题,请有人指出我正确的方向。
我在BlackBerry Eclipse Plugin with Platform version 4.5上使用BlackBerry Java。