我有一个连接到蓝牙配对银芯片的Android应用程序。我正在测试它的发送/接收功能。我一直在关注android开发网站上的蓝牙示例。
我可以告诉发送数据有效,因为当我向芯片写入(" $$$")时,它进入命令模式并快速闪烁它的状态LED。当芯片进入命令模式时,它会发送一个回复:" CMD"。我收到此回复时遇到问题。
按下按钮时,执行以下代码。 mct是我用来读写的全局ConnectedThread。由于形式不佳,所有功能都在MainActivity.java
中if(connected){
if (cmdMode == false){
mct.write("$$$".getBytes()); //enter command mode
mct.listen();
TextView lbl_history = (TextView) findViewById(R.id.lbl_history);
lbl_history.setText(message);
cmdMode = true;
}
else{
mct.write("k,\n".getBytes()); //kill the connection
cmdMode = false;
}
}
我的沟通主题:
private class ConnectedThread extends Thread {
private final BluetoothSocket mmSocket;
private final InputStream mmInStream;
private final OutputStream mmOutStream;
public ConnectedThread(BluetoothSocket socket) {
mmSocket = socket;
InputStream tmpIn = null;
OutputStream tmpOut = null;
try {
tmpIn = socket.getInputStream();
tmpOut = socket.getOutputStream();
} catch (IOException e) { }
mmInStream = tmpIn;
mmOutStream = tmpOut;
}
public void listen() {
handled = false;
byte[] buffer = new byte[1024]; // buffer store for the stream
int bytes; // bytes returned from read()
reply=null;
while (reply==null) {
try {
// Read from the InputStream
bytes = mmInStream.read(buffer);
reply = buffer.toString();
//message is a global String to store the latest message received
message = reply;
} catch (IOException e) {
break;
}
}
reply = null;
}
//write and cancel functions removed for simplicity
}
当我运行此代码时,结果是一个文本视图,其中显示" [B @ 415f8910",我认为这是垃圾。多次运行相同的代码将产生类似的结果,最后几位数字会有所不同。预期的结果将是" CMD"。关于问题在这里的任何想法?我是Android开发的新手,所以感谢任何帮助。
进一步检查显示多次运行严格增加" [B @ 415f8910",让我相信它是一个内存地址。尽管如此,我还是不知道该如何处理它。
答案 0 :(得分:0)
我发现了问题。而不是直接调用" toString()"在字节数组上,我需要调用String构造函数来正确转换数据:
String message = new String(buffer, "UTF-8");
指定UTF-8是有所作为的。