无法将BlackBerry手机与Bluetooth SPP设备连接

时间:2012-06-18 06:36:27

标签: blackberry bluetooth spp

我正在尝试使用以下代码连接到黑莓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。

0 个答案:

没有答案