1

我正在尝试使用以下代码从黑莓 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.,我无法获得完整的跟踪。这里有什么问题,谁能指出我正确的方向。我在平台版本 4.5 的 BlackBerry Eclipse 插件上使用 BlackBerry Java。

4

0 回答 0