4

我正在开发一个蓝牙应用程序,该应用程序涉及我的 android 蓝牙应用程序与计算机上运行的服务器的连接。服务器也是使用 blue-cove api 制作的蓝牙应用程序。

我现在面临的问题是我无法在我的移动应用程序和该计算机服务器应用程序之间建立连接。

这是我的android应用程序代码:

 try {
            // Connect the device through the socket. This will block
            // until it succeeds or throws an exception
            mySocket = myDevice.createRfcommSocketToServiceRecord(MY_UUID);
            mySocket.connect();
            toast = Toast.makeText(context, "Connection established",   thisClass.duration);
            toast.show();
          } catch (IOException connectException) {
            // Unable to connect; close the socket and get out
            try {
                mySocket.close();
                toast = Toast.makeText(context, "Connection not established", thisClass.duration);
                toast.show();
            } catch (IOException closeException) { }
            return;
        }

问题出在哪里,或者我可能遗漏了什么。而且我对 socket.connect() 方法的理解也很模糊。请在这方面帮助我。

4

1 回答 1

5

我刚刚完成了一个类似应用程序的工作,并且在连接时遇到了问题。查看更多代码会有所帮助,但上面的摘录看起来像我所遵循的示例。我将首先检查您尝试连接的 PC 上是否存在 MY_UUID。

我已经在我的博客http://digitalhacksblog.blogspot.com/2012/05/android-example-bluetooth-simple-spp.html上发布了我的示例,包括客户端和服务器。

希望这可以帮助。

于 2012-05-05T12:51:03.277 回答