我正在做基于蓝牙的应用程序,我想连接其他设备,如诺基亚设备和打印机。
我参考了 android 蓝牙文档http://developer.android.com/guide/topics/connectivity/bluetooth.html。它演示了所有基本的蓝牙 API 功能,我做了所有这些事情
Scanning for other Bluetooth devices
Querying the local Bluetooth adapter for paired Bluetooth devices
Establishing RFCOMM channels/sockets
Connecting to a remote device
Transfering data over Bluetooth
我从 BluetoothChat 获得参考,android 的示例。
BluetoothChat This application send data to another android device but for that this application must be installed in both the devices.
像这样如何通过代码通过蓝牙将文件从Android设备发送到其他设备
我想要的是
- 我想从我的应用程序将文件从一台设备发送到另一台设备,即使另一台没有运行我们的应用程序的设备也能正常工作。即接收设备也能够使用默认蓝牙接收文件。
这在android中可能吗?