2 つの異なる Bluetooth プリンターがあります。Bixolon SPP-R200 と富士通 FTP-628WSL110。それぞれに個別に接続して(Samsung Galaxy SIIを使用)、印刷、切断、再接続を問題なく行うことができます。ただし、Bixolon の電源を切って富士通とペアリングしようとすると (以前はペアリングされていませんでしたが、Bixolon はまだペアリングされています)、作成されたソケットに接続しようとすると失敗します。逆も同じです。
エラーメッセージは次のとおりです。
07-02 13:00:11.040: E/MyApp.BluetoothConnection(9380): Failed to connect to rfcomm socket.
07-02 13:00:11.040: E/MyApp.BluetoothConnection(9380): java.io.IOException: Service discovery failed
07-02 13:00:11.040: E/MyApp.BluetoothConnection(9380): at android.bluetooth.BluetoothSocket$SdpHelper.doSdp(BluetoothSocket.java:406)
07-02 13:00:11.040: E/MyApp.BluetoothConnection(9380): at android.bluetooth.BluetoothSocket.connect(BluetoothSocket.java:217)
07-02 13:00:11.040: E/MyApp.BluetoothConnection(9380): at MyApp.BluetoothConnection.connect(BluetoothConnection.java:171)
07-02 13:00:11.040: E/MyApp.BluetoothConnection(9380): at MyApp.AbstractBluetoothPrinter.connect(AbstractBluetoothPrinter.java:34)
接続を試行するコードは次のとおりです。説明した状況で失敗する行は btSocket.connect(); です。- 例外は上記を参照:
/** Is set in connect() */
private BluetoothSocket btSocket = null;
/** Is set prior to connect() */
private BluetoothSocket btDevice;
public boolean connect(){
try {
btSocket = btDevice.createRfcommSocketToServiceRecord("00001101-0000-1000-8000-00805F9B34FB");
if (btDevice.getName().startsWith("FTP")) {
//Special treatment for the fujitsu printer
SystemClock.sleep(1000);
}
} catch (Throwable e) {
LogCat.e(TAG, "Failed to create rfcomm socket.", e);
return false;
}
try {
// Stop Bluetooth discovery if it's going on
BluetoothHandler.cancelDiscovery();
// This fails under the described circumstances
btSocket.connect();
} catch (Throwable e) {
LogCat.e(TAG, "Failed to connect to rfcomm socket.", e);
return false;
}
// Obtain streams etc...
}
私は両方のデバイスに接続するために同じUUID を使用しています (ただし、一度に 1 つのデバイスのみがオンになり、同時にオンになることはありません)、よく知られている SDK API の SPP UUID:
00001101-0000-1000-8000-00805F9B34FB
これは私が疑問に思うことです: デバイスごとに異なる UUID が必要なのでしょうか? はいの場合、どの考えですか?