Android蓝牙套接字没有给出预期的确认

时间:2015-10-16 07:45:38

标签: android bluetooth outputstream bluetooth-socket bluetooth-profile

我正在向蓝牙插座发送一个字节数组,我从蓝牙打印机得到一个响应,但是我没有得到正确的图像数据发送确认。

我按以下方式将字节数组写入outputstream

byte[] queryData = new byte[]{
    0x1B, 0x2A, 0x43, 0x41,
    0x00, 0x00, 0x00, 0x00,
    0x01, 0x27, 0x5E,
    0x01, 0x00, 0x00, 0x00, 0x00
};
outputStream.write(queryData);
outputStream.flush();

还有其他方法可以将二进制数据写入outputstream吗?

我被困在任何建议中。

0 个答案:

没有答案