用Java捕获蓝牙通信

时间:2015-06-03 02:52:50

标签: java bluetooth bluecove

我有一个适用于蓝牙的小设备,我想捕获从这个设备启动的命令,无论如何都要在我的电脑上使用它们 我尝试使用BlueCove Library

但我收到的只是一些字符,当我尝试从设备启动命令时,InputStream没有收到任何内容

public void run() {
    try {
        // prepare to receive data
        DataInputStream inputStream   = new DataInputStream(mConnection.openInputStream());
        System.out.println("waiting for input");

        while (true) {
            int command = inputStream.read(new byte[8]);
            //int donnee = inputStream.read() ; 
            if (command == EXIT_CMD) {
              System.out.println("finish process");
                break;
            }
            processCommand(command);



        }

    } catch (Exception e) {
        e.printStackTrace();
    }

0 个答案:

没有答案