我有一个线程不断从 InputStream 读取数据。InputStream 数据来自蓝牙套接字。以前,我没有在 InputStream 读取语句周围使用 if(mmInStream.available() > 0) 并且当蓝牙套接字消失(有人关闭设备)时, mmInStream.read 会抛出 IOException 然后我可以处理我的断开逻辑。确定何时发生断开连接的最佳方法是什么?
0xEE 的第一个字节告诉我它是数据包的领导者,第二个字节告诉我要读取的长度。
public void run() {
byte[] tempBuffer = new byte[1024];
byte[] buffer = null;
int byteRead=0;
long timeout=0;
long wait=100;
while (true) {
try {
timeout = System.currentTimeMillis() + wait;
if(mmInStream.available() > 0) {
while((mmInStream.available() > 0) && (tempBuffer[0] != (byte) 0xEE) && (System.currentTimeMillis() < timeout)){
byteRead = mmInStream.read(tempBuffer, 0, 1);
}
if(tempBuffer[0] == (byte) 0xEE){
timeout = System.currentTimeMillis() + wait;
while(byteRead<2 && (System.currentTimeMillis() < timeout)){
byteRead += mmInStream.read(tempBuffer, 1, 1);
}
}
timeout = System.currentTimeMillis() + wait;
while((byteRead<tempBuffer[1]) && (System.currentTimeMillis() < timeout)){
byteRead += mmInStream.read(tempBuffer, byteRead, tempBuffer[1]-byteRead);
}
}
if(byteRead > 0){
//do something with the bytes read in
}
}
catch (IOException e) {
bluetoothConnectionLost();
break;
}
}
}