public void printTicket() { String msg = ""; try { OutputStream os = mBluetoothSocket.getOutputStream(); msg +="Hola niño. Atención" os.write(msg.getBytes("ISO-8859-1")); os.close(); return; } catch (Exception localException) {
}