I need to transfer binary data through bluetooth in android. Should I use OBEX for it or is there any other way of doing it.
Please suggest me a tutorial/link for the same.
I need to transfer binary data through bluetooth in android. Should I use OBEX for it or is there any other way of doing it.
Please suggest me a tutorial/link for the same.
您应该使用蓝牙 SPP 配置文件,Android 在这里有很好的文档和示例代码。设置蓝牙
蓝牙文件传输的标准方法采用 OBEX over RFCOMM,提供 FTP 服务/配置文件。OBEX 是来自 IrDA 协会的二进制/对象交换协议,实现起来相当容易,但非常具有可扩展性和通用性。此外,如果您不想通过规范从头开始编写代码,则可以在 Internet 上使用多个库。无论您想要针对成熟的 FTP 还是更简单的 OPP,您都需要 OBEX 作为底层。