通过蓝牙从Android发送图像到电脑

时间:2014-09-18 09:48:53

标签: android bluetooth

我刚刚与Android合作,我必须创建一个拍照的应用程序,然后通过蓝牙将其发送到PC。 问题是当我必须发送图像时,因为我找不到简单的代码来执行此操作。 我每次都可以看到我之前拍摄的照片,所以我需要一个代码来搜索我附近的有源设备,然后将照片发送给我选择的其中一个。 请帮我! 谢谢

2 个答案:

答案 0 :(得分:0)

要发现附近的蓝牙设备,您可以参考以下链接,以帮助您更好地理解它: http://developer.android.com/guide/topics/connectivity/bluetooth.html#FindingDevices http://developer.android.com/guide/topics/connectivity/bluetooth.html#DiscoveringDevices

如果你想在不询问用户的情况下启用设备蓝牙。您可以在清单文件中使用它。

  <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

答案 1 :(得分:0)

你需要了解android中的BluetoothServerSocket编程。

http://www.programcreek.com/java-api-examples/index.php?api=android.bluetooth.BluetoothServerSocket

请点击此链接...希望这会对您有所帮助。

https://developer.android.com/guide/topics/connectivity/bluetooth-le.html

按照此链接了解android中的蓝牙。