我正在使用Google Bluetooth Chat Example中的代码来设置蓝牙监听服务器。我希望应用程序始终监听传入连接。当应用程序看到连接请求时,它将接受连接,读入远程设备将发送的字符串,然后通过发送文件进行响应。
问题是应用程序从不接受连接。它阻挡在socket = mmServerSocket.accept();
并且永远不会移动。请在行if(D) System.out.println("Waiting to connect************");
之后查看下面的代码。为了测试它,我启动启动线程的活动,然后尝试连接我的笔记本电脑并发送文件。当我这样做时,整个Android蓝牙管理器会看到该文件并有效地绕过我的Android设备下载它。这是测试它的唯一方法吗?我无法弄清楚它是否是测试或编码问题。
private class AcceptThread extends Thread {
// The local server socket
private final BluetoothServerSocket mmServerSocket;
public AcceptThread() {
BluetoothServerSocket tmp = null;
// Create a new listening server socket
try {
tmp = mAdapter.listenUsingRfcommWithServiceRecord(NAME, MY_UUID);
} catch (IOException e) {
Log.e(TAG, "listen() failed", e);
}
mmServerSocket = tmp;
}
public void run() {
if (D) Log.d(TAG, "BEGIN mAcceptThread" + this);
setName("AcceptThread");
BluetoothSocket socket = null;
// Listen to the server socket if we're not connected
while (mState != STATE_CONNECTED) {
try {
// This is a blocking call and will only return on a
// successful connection or an exception
if(D) System.out.println("Waiting to connect************");
socket = mmServerSocket.accept();
if(D) System.out.println("We have accepted connection and are connected***************");
} catch (IOException e) {
Log.e(TAG, "accept() failed", e);
break;
}
// If a connection was accepted
if (socket != null) {
synchronized (BluetoothServer.this) {
switch (mState) {
case STATE_LISTEN:
case STATE_CONNECTING:
// Situation normal. Start the connected thread.
connected(socket, socket.getRemoteDevice());
break;
case STATE_NONE:
case STATE_CONNECTED:
// Either not ready or already connected. Terminate new socket.
try {
socket.close();
} catch (IOException e) {
Log.e(TAG, "Could not close unwanted socket", e);
}
break;
}
}
}
}
if (D) Log.i(TAG, "END mAcceptThread");
}
答案 0 :(得分:2)
此问题的解决方案在于androidmanifest.xml
文件;
uses-permission android:name="android.permission.BLUETOOTH_ADMIN"
uses-permission android:name="android.permission.BLUETOOTH"
手机未授予您的程序权限
我实际上添加了一些代码,但我猜它已被删除了
答案 1 :(得分:1)
检查您的客户端是否正在寻找与MY_UUID相同的UUID。您可能希望将UUID更改为RFCOMM的通用UUID。
private static final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
答案 2 :(得分:1)
我遇到了同样的问题。我正在使用蓝牙聊天示例,该示例从输出ADC数据的arduino BT读取数据。在更新我的SDK之前,一切正常。在我尝试使用DataInputStream包装的InpuStream读取数据之前,程序不会退出,因此我可以使用readline()函数。我有正确的UUID。我已经尝试了多次
我改变了阅读功能:
public void run() {
Log.i(TAG, "BEGIN mConnectedThread");
mmDataInStream = new DataInputStream(mmInStream);
// Keep listening to the InputStream while connected
while (true) {
try {
// Read from the DataInputStream
String mess = mmDataInStream.readLine();
int mes = Integer.parseInt(mess);
mHandler.obtainMessage(BluetoothChat.MESSAGE_READ, mes)
.sendToTarget();
} catch (IOException e) {
Log.e(TAG, "disconnected", e);
connectionLost();
break;
}
}
}