我正在尝试接收蓝牙消息并且我的应用程序运行但是过了一段时间(1分钟左右)我在读取缓冲区上得到一个数组超出范围的异常,它似乎也没有读取我的消息并更新我的textview?
void beginListenForData()
{
final Handler handler = new Handler();
final byte delimiter = 10; //This is the ASCII code for a newline character
stopWorker = false;
readBufferPosition = 0;
readBuffer = new byte[1024];
workerThread = new Thread(new Runnable()
{
public void run()
{
while(!Thread.currentThread().isInterrupted() && !stopWorker)
{
try
{
int bytesAvailable = mmInputStream.available();
if(bytesAvailable > 0)
{
byte[] packetBytes = new byte[bytesAvailable];
mmInputStream.read(packetBytes);
for(int i=0;i<bytesAvailable;i++)
{
byte b = packetBytes[i];
if(b == delimiter)
{
byte[] encodedBytes = new byte[readBufferPosition];
System.arraycopy(readBuffer, 0, encodedBytes, 0, encodedBytes.length);
final String data = new String(encodedBytes, "US-ASCII");
readBufferPosition = 0;
handler.post(new Runnable()
{
public void run()
{
myLabel.setText(data);
}
});
}
else
{
readBuffer[readBufferPosition++] = b;
}
}
}
}
catch (IOException ex)
{
stopWorker = true;
}
}
}
});
workerThread.start();
}
答案 0 :(得分:0)
您正在使用最大1024个单元格的数组。
1)增加Array
的数量。 (但如果它再次太小,你可以再次得到这个例外)。
2)使用List
而不是Array
,项目将被添加到列表中而没有最大尺寸,列表将会增加,直到方法完成,您将无法获得“OutOfBoundException”。