我一直在使用InputStream.read( byte[] b, int off, int len )
方法来读取数据,但现在遇到了超时问题。我有时会期待阅读超时,并且应该让程序在超时后相应地调整自己。我试图实现一个线程,但我对线程一无所知,无法让它工作。我还想补充一点,这个线程正在另一个线程中初始化。我不确定这意味着什么,但它可能会导致问题。
我的初始代码在我需要阅读的大部分时间都有效,但是每当我期待超时时,我的程序都会在read()
调用时冻结并且永远不会超时。当我实现这个新代码时,我的初始代码工作的时间现在超时了。我使用Thread.wait(500)
我假设是 500 毫秒,但我找不到任何包含该wait()
函数的 Javadocs。这里和这里。
我还研究了为 . 声明超时,但我在文档BluetoothSocket
中的任何地方都找不到它。
这是我的初始代码的样子:
public void run(int length) throws IOException {
buffer = new byte[1024];
try {
bytes = mmInStream.read(buffer, 0, length);
mHandler.obtainMessage(MainMenu.MESSAGE_READ, bytes, -1, buffer)
.sendToTarget();
} catch (IOException e) {
Message msg = mHandler.obtainMessage(MainMenu.MESSAGE_TOAST);
Bundle bundle = new Bundle();
bundle.putString( TOAST, "Device has disconnected from the Bluetooth Module." );
msg.setData(bundle);
mHandler.sendMessage(msg);
connectionLost();
BluetoothService.this.start();
}
这是我试图实现的:
public void run(int length) throws IOException {
buffer = new byte[1024];
length1 = length;
Thread myThread = new Thread(new Runnable() {
public void run() {
try {
bytes = mmInStream.read( buffer, 0, length1 );
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
synchronized (myThread) {
myThread.start();
try {
myThread.wait(500);
if(myThread.isAlive()) {
mmInStream.close();
Log.i( "InStream", "Timeout exceeded!");
}
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
try {
myThread.run();
mHandler.obtainMessage(MainMenu.MESSAGE_READ, bytes, -1, buffer)
.sendToTarget();
} catch (IOException e) {
Message msg = mHandler.obtainMessage(MainMenu.MESSAGE_TOAST);
Bundle bundle = new Bundle();
bundle.putString( TOAST, "Device has disconnected from the Bluetooth Module." );
msg.setData(bundle);
mHandler.sendMessage(msg);
connectionLost();
BluetoothService.this.start();
}
编辑:
所以我正在尝试重新创建
buffer = new byte[1024];
bytes = mmInStream.read(buffer, 0, length);
我做了以下事情:
Scanner scan = new Scanner(new InputStreamReader(mmInStream));
String readIn;
try {
readIn = scan.next();
bytes = 5; // I tried with or without this, since I do not think it matters...
buffer = readIn.getBytes( Charset.forName( "US-ASCII" ) );
}
稍后在我的代码中,我进行了此调用....抱歉再次编辑,buf=read( 5 )
调用转到上面显示的内容。
byte[] buf = buffer;
write( a );
buf = read( 5 );
Log.i(TAG, "Before buf[5]" );
try {
buf[5] = '\0';
} catch( NullPointerException e ) {
return false;
}
当我使用原始方法时,它buf[5]
可以很好地传递这个调用。但是当我使用新方法时,它给了我一个IndexOutOfBoundsException
在那个地方。我错过了什么吗?预期的输入应该是CMD\r\n