我正在尝试从Android设备发送/接收字符串。
最近3个小时,我一直在搜寻Google,但找不到任何有效的方法。
我最接近的是:fella

我得到这些错误:

02-19 15:44:17.680    4680-4680/com.example.jelle.bluetoothconnector W/System.err﹕ at com.example.jelle.bluetoothconnector.BluetoothConnection.init(BluetoothConnection.java:38)
02-19 15:44:17.680    4680-4680/com.example.jelle.bluetoothconnector W/System.err﹕ at com.example.jelle.bluetoothconnector.BluetoothConnection.<init>(BluetoothConnection.java:25)
02-19 15:44:17.680    4680-4680/com.example.jelle.bluetoothconnector W/System.err﹕ at com.example.jelle.bluetoothconnector.ConnectorActivity.btnBluetooth_onCLick(ConnectorActivity.java:92)
02-19 15:44:17.680    4680-4680/com.example.jelle.bluetoothconnector W/System.err﹕ at java.lang.reflect.Method.invoke(Native Method)
02-19 15:44:17.680    4680-4680/com.example.jelle.bluetoothconnector W/System.err﹕ at java.lang.reflect.Method.invoke(Method.java:372)


谁能帮我?我只需要一些可以通过蓝牙发送/接收字符串的代码即可入门

谢谢!

最佳答案

最好和最全面的示例是Android的官方蓝牙聊天示例。您可能不需要更改大多数内容。看到这个:
https://github.com/googlesamples/android-BluetoothChat

07-28 01:11