从Android中的蓝牙设备读取数据

我正在使用蓝牙聊天功能,以便连接和接收来自蓝牙设备的数据。

我使用以下代码读取数据:

public void run() {

byte[] buffer = new byte[1024];

int bytes;

Log.v("MR", "start listening....");

// Keep listening to the InputStream while connected

while (true) {

try {

// Read from the InputStream

Log.d("MR", "buffer in try");

bytes = mmInStream.read(buffer);

Log.d("MR", "input stream :"+(new String(buffer)));

// Send the obtained bytes to the UI Activity

mHandler.obtainMessage(Conn.MESSAGE_READ, bytes, -1, buffer).sendToTarget();

Log.d("MR", "buffer after");

} catch (Exception e) {

Log.e("MR", "Error :"+e.getMessage());

//

connectionLost();

// break;

}

Log.d("MR", "buffer after while");

}

}

设备一直在发送数据而不会停止。

通过上面的代码,我得到以下消息:

Log.d("MR", "buffer in try");

然后转到下一行:

bytes=mmInStream.read(buffer);

并且永远不会从该呼叫中返回。我猜这是因为它开始从设备读取数据,并且直到断开连接才停止。如何一次读取一定数量的字节?

除非bytes = mmInStream.read(buffer);由于它不保留代码,否则不从设备取回任何数据?

回答:

我改用DataInputStreams,因为您可以执行readFully()方法,该方法在返回之前等待读取一定数量的字节。我这样设置BT连接:

BluetoothDevice btDevice = bta.getRemoteDevice(macAddress);

BluetoothSocket btSocket = InsecureBluetooth.createRfcommSocketToServiceRecord(

btDevice, UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"), false);

btSocket.connect();

InputStream input = btSocket.getInputStream();

DataInputStream dinput = new DataInputStream(input);

然后稍后当我想阅读时,我使用readFully:

dinput.readFully(byteArray, 0, byteArray.length);

以上是 从Android中的蓝牙设备读取数据 的全部内容, 来源链接: utcz.com/qa/427974.html

回到顶部