我使用了BluetoothChat示例,this用于我的应用程序。我向蓝牙SPP设备(蓝牙到UART)发送了一个命令并得到了答案。此答案具有可变大小,但小于255个字节。
问题是我把答案分成了两个缓冲区。首先读取几个字节(大多数只有两个),然后是其余的。我没有丢失数据,但我需要完成它才能使用它。我用mmInStream.available();
尝试了它(参见代码snippset),但这太慢了。我也尝试了sleep(10);
,但它没有用。
我能做什么?
非常感谢提前!
private class ConnectedThread extends Thread {
private final BluetoothSocket mmSocket;
private final InputStream mmInStream;
private final OutputStream mmOutStream;
public ConnectedThread(BluetoothSocket socket, String socketType) {
Log.d(TAG, "create ConnectedThread: " + socketType);
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[255];
int bytes;
// Keep listening to the InputStream while connected
while (true) {
try {
// That was a try, but it's to slow
//bytesAv = mmInStream.available();
//if (bytesAv>0){
// Read from the InputStream
bytes = mmInStream.read(buffer); // TODO
byte[] buffer2 = new byte[bytes];
System.arraycopy(buffer, 0, buffer2, 0, bytes);
// Send the obtained bytes to the UI Activity
mHandler.obtainMessage(BluetoothChat.MESSAGE_READ, bytes, -1, buffer2)
.sendToTarget();
//}
} catch (IOException e) {
Log.e(TAG, "disconnected", e);
connectionLost();
// Start the service over to restart listening mode
BluetoothChatService.this.start();
break;
}
}
}
答案 0 :(得分:1)
这是蓝牙SPP配置文件的性质,它不提供任何帧边界。 因此,您的应用程序应该读取所有数据,并使用您应该通过SPP添加到数据中的一些附加标题重新构建任何帧。