我有一個應用程序,它使用Rongta RRP-200移動打印機打印一些文本,通過藍牙與我的手機連接。Android - 從移動打印機上的應用程序打印
對於這一點,我使用這個插件:https://github.com/srehanuddin/Cordova-Plugin-Bluetooth-Printer
我能到我的設備連接到打印機,甚至從我的應用程序,這使我回了一個短信跑打印功能通知我數據寄了,送了。但是,打印機什麼也不做(除了打開燈)。
這是試圖打印我的文字的功能(從插件):
boolean printText(CallbackContext callbackContext, String msg) throws IOException {
try {
mmOutputStream.write(msg.getBytes());
// tell the user data were sent
//Log.d(LOG_TAG, "Data Sent");
callbackContext.success("Data Sent");
return true;
} catch (Exception e) {
String errMsg = e.getMessage();
Log.e(LOG_TAG, errMsg);
e.printStackTrace();
callbackContext.error(errMsg);
}
return false;
}
什麼可能出問題會在這裏?