次のコードを使用して、BlackBerry9900電話からBluetoothデバイスに接続しようとしています。
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のBlackBerryEclipseプラグインでBlackBerryJavaを使用しています。