询问“配对请求”在 android 2.1 中连接到 Samsung Galaxy 上的蓝牙插座 SPP 时

发布于 2024-10-16 22:39:14 字数 430 浏览 2 评论 0原文

我正在尝试使用我的 Samsung Galaxy 平板电脑(使用 UUID 为 “00001101-0000-1000-8000-00805F9B34FB”)通过 Socket SPP 连接到蓝牙,但这对我不起作用。

我尝试使用以下方法:

Method m = device.getClass().getMethod("createRfcommSocket", new Class[] { int.class });
sock = (BluetoothSocket) m.invoke(device, Integer.valueOf(1));
sock.connect();

这工作正常,但每次我尝试连接时,它都会要求配对请求 PIN,失败会导致蓝牙连接失败。

如何设置/保存配对信息,以便每次连接时都不会提示配对请求。

I'm trying to connected to Bluetooth with Socket SPP using my Samsung Galaxy Tablet using UUID of "00001101-0000-1000-8000-00805F9B34FB", but that doesn't not work for me.

And I have tried using the following:

Method m = device.getClass().getMethod("createRfcommSocket", new Class[] { int.class });
sock = (BluetoothSocket) m.invoke(device, Integer.valueOf(1));
sock.connect();

This is working fine, but everytime I try to connect, it's asking for pairing request PIN, failing of that is leading to failure of bluetooth connection.

How can I set/save the pair information so that it should not prompt pairing request every time I connect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情释 2024-10-23 22:39:14

我也遇到这个问题了。这可能是 Android ICS 问题。作为解决方法,您可以使用不安全套接字

Method m = device.getClass().getMethod("createInsecureRfcommSocket", new Class[] { int.class });
sock = (BluetoothSocket) m.invoke(device, Integer.valueOf(1));
sock.connect();

I got this problem as well. This is probably Android ICS issue. As a workaround you can use Insecure Socket

Method m = device.getClass().getMethod("createInsecureRfcommSocket", new Class[] { int.class });
sock = (BluetoothSocket) m.invoke(device, Integer.valueOf(1));
sock.connect();
对你的占有欲 2024-10-23 22:39:14

您可以转到 Android 设置菜单上的蓝牙设置并永久配对设备!你以前尝试过这个吗?

You can go to Bluetooth settings on the Android settings menu and permanently pair the device! Have you tried this before?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文