Google の Infamous BluetoothChat-Example を使用して ByteArray を受信しています。彼の長さ (55 バイト)、開始バイト (0x69)、終了バイト (0x16)、および配列内のデータの長さを知っています。
Sender が中断することなく 55 バイトを送信していることは確かですが、BluethootChat の例では、複数のデータ パッケージを受信しているように見えます。最初のパッケージは、0x69 とそれに続く 1023 回の 0x00 で構成されます。次に、残りの 55 バイトを受け取ります。これは 70% の確率で発生し、アレイが途中で分裂することもあれば、アレイ全体が完全に受信されることもあります。
これは通常の Android-Bluetooth 動作ですか?
前もって感謝します...
private 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");
byte[] buffer = new byte[1024];
int bytes;
// Keep listening to the InputStream while connected
while (true) {
try {
// Read from the InputStream
bytes = mmInStream.read(buffer);
// Send the obtained bytes to the UI Activity
mHandler.obtainMessage(BluetoothChat.MESSAGE_READ, bytes, -1, buffer)
.sendToTarget();
} catch (IOException e) {
Log.e(TAG, "disconnected", e);
connectionLost();
break;
}
}
}