0

我正在使用 android 2.2,我尝试了以下代码在 android 中发送数据

BluetoothDevice device=BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MACID);
Method m=device.getClass.getMethod("createRFcommSocket",new Class[]{int.class};
BluetoothSocket socket=(BluetoothSocket)m.invock(device,1);
socket.connect();
OutputStream os;
os=socket.getOutputStream();
os.write("hai".getBytes());
os.flush();
os.close();
socket.close();

找到以下错误:

ERROR : java.io.IOException:Connection refused

请在这方面帮助我...

4

1 回答 1

0

你加了这些吗?

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

<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
于 2012-07-18T15:03:43.340 回答