3

Bluetooth デバイスから入力ストリームを読み取る単純なスレッドを使用して、Google の BluetoothChat の例のコードを適応させています。

ほとんどの場合、デバイスからバイトを永久に読み取り続けているように見えます。ただし、数ラウンド後に読み取りが停止することがあります。

08-15 17:09:28.123: E/BluetoothCommService(19749): disconnected
08-15 17:09:28.123: E/BluetoothCommService(19749): java.io.IOException: Software caused connection abort
08-15 17:09:28.123: E/BluetoothCommService(19749):  at android.bluetooth.BluetoothSocket.readNative(Native Method)
08-15 17:09:28.123: E/BluetoothCommService(19749):  at android.bluetooth.BluetoothSocket.read(BluetoothSocket.java:388)
08-15 17:09:28.123: E/BluetoothCommService(19749):  at android.bluetooth.BluetoothInputStream.read(BluetoothInputStream.java:96)
08-15 17:09:28.123: E/BluetoothCommService(19749):  at java.io.InputStream.read(InputStream.java:163)
08-15 17:09:28.123: E/BluetoothCommService(19749):  at org.projectproto.yuscope.BluetoothCommService$ConnectedThread.run(BluetoothCommService.java:406)

Bluetooth デバイスからデータを読み取るスレッド:

public class ConnectedThread extends Thread {
        private final BluetoothSocket mmSocket;
        private final InputStream mmInStream;
        private final OutputStream mmOutStream;

        public ConnectedThread(BluetoothSocket socket) {
            Log.d(TAG, "create ConnectedThread");
            mmSocket = socket;
            InputStream tmpIn = null;
            OutputStream tmpOut = null;

            // Get the BluetoothSocket input and output streams
            try {
                tmpIn = socket.getInputStream();
                tmpOut = socket.getOutputStream();
            } catch (IOException e) {
                Log.e(TAG, "temp sockets not created", e);
            }

            mmInStream = tmpIn;
            mmOutStream = tmpOut;
        }

        public void run() {
            Log.i(TAG, "BEGIN mConnectedThread");

            int bufSize = 5;
            byte[] buffer = new byte[bufSize];

            //Number of bytes read into the buffer return by mmInStream.read()
            int bytesReceived = 0;

            // Keep listening to the InputStream while connected
            while (true) {
                try {
                    // Read from the InputStream
                    bytesReceived = mmInStream.read(buffer);//this is line 406 where the exception is caught                    
                    // Send the obtained bytes to the UI Activity
                    if (bytesReceived>-1) {
                        mHandler.obtainMessage(MyUIAactivity.MESSAGE_READ, bytesReceived, -1, buffer).sendToTarget();
                    }

                } catch (IOException e) {
                    Log.e(TAG, "disconnected", e);
                    connectionLost();
                    // Start the service over to restart listening mode
                    BluetoothCommService.this.start();
                    break;

                } catch (Exception e) {
                    Log.e(TAG, "some weird exception thrown", e);
                }
            }
        }  

更新私は自分の質問を投稿する前に、
明らかにこの質問を読みました。私の質問には、他の質問とは異なる非常に具体的なコンテキスト (Android フォンと Bluetooth 2.0 をサポートする健康デバイスとの間の通信) があります。また、そこに言及されているMicrosoftの記事は、Stackoverflow自体の答えが私には不明確に見えるという事実は言うまでもなく、まったく役に立ちません。

4

0 に答える 0