1

我有一个线程不断从 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;
                }
            }

        }
4

3 回答 3

1

您不需要使用 available() 进行所有这些恶意操作。只需使用 setSoTimeout 设置读取超时,读取,检测读取返回 -1,使用 read 返回的计数 if > 0 而不是假设缓冲区已填满,捕获 SocketTimeoutException 以检测读取超时,并捕获 IOException 以检测其他破损。

于 2012-08-11T02:06:47.027 回答
0

看了下文档,我觉得是这样的:

public void run() {
    byte[] tempBuffer = new byte[1024];
    int byteRead = 0;

    while (true) {
        try {
            bytesRead = mmInStream.read(tempBuffer, 0, tempBuffer.length);
            if (bytesRead < 0)
                // End of stream.
                break;

            // Do something with the bytes read in. There are bytesRead bytes in tempBuffer.
        } catch (IOException e) {
            bluetoothConnectionLost();
            break;
        }
    }
}
于 2012-08-10T21:36:37.433 回答
0

我认为是这样的:

 void fun(){
   isOpen = true;
   try{
      InputStream stream = socket.getInputStream();
      while(isOpen){
         byte[] buf = new byte[8];
         int pos = stream.read(buf);
         if (pos < 0) {
            throw new IOException();
         }
         //dosomething...
      }
  }catch(IOException e) {
    isOpen  = false;
  }finally{
    //do dispose here
  }
}
于 2019-08-21T09:43:34.520 回答