1

我试图从手机(Android 2.3.3)获取一个字符串,发送到 PC(Windows 7),我使用 RFCOMM 基本连接,像这样

BluetoothSocket tmp = null;
        try {
            Method m = device.getClass().getMethod("createRfcommSocket", new Class[] {int.class});
            tmp = (BluetoothSocket) m.invoke(device, 1);
        } catch (Exception e) { 
            Log.i("bluetooth", e.getMessage());
        }
        mmSocket = tmp;
        try {
            mmSocket.connect();

对于输出字符串,像这样

String message = "TEST";
        try {
            mmOutStream.write(mensaje.getBytes());
        } catch (IOException e) {
            Log.e("bluetooth", "ERROR: "+e);
        }

它基本上可以工作(尝试使用超级终端)。我想做的只是在我的 PC 上接收字符串“TEST”,但使用 java 应用程序,稍后将控制微控制器。

谢谢。

4

1 回答 1

1

如果您的问题是如何开始使用 Java 蓝牙应用程序:我在BlueCove for Windows 上取得了巨大成功。

于 2011-11-08T02:29:07.500 回答