上一篇是佳博网络打印机的,这一篇是关于蓝牙(不是低功耗4.0)打印机的例子。
/**
* 检查是否有纸指令
*/
public static final byte[] stateBype = new byte[] { 0x10, 0x04, 0x04 };
/**
* 检查是否有纸指令
*/
// public static final byte[] stateBype2 = new byte[] { 0x1B, 0x76 };
/**
* 居左对齐
*/
public static final Byte[] toLeft = new Byte[] { 0x1B, 0x61, 0x00 };
/**
* 居中对齐
*/
public static final Byte[] toCenter = new Byte[] { 0x1B, 0x61, 0x01 };
/**
* 加大2倍
*/
public static final Byte[] toLarge = new Byte[] { 0x1D, 0x21, 0x11 };
/**
* 取消加大
*/
public static final Byte[] cancleLarge = new Byte[] { 0x1D, 0x21, 0x00 };
/**
* 加粗
*/
public static final Byte[] toLarge2 = new Byte[] { 0x1B, 0x45, 0x01 };
/**
* 取消加粗
*/
public static final Byte[] cancleLarge2 = new Byte[] { 0x1B, 0x45, 0x00 };
/**
* 加载走纸命令
*/
public static final Byte[] cut = new Byte[] { 0x1D, 0x56, 0x42, 0x00 };// 切纸并且走纸
/**
* 设置模型
*/
public static final Byte[] setCodeModel = new Byte[] { 0x1D, 0x28, 0x6B, 0x04, 0x00, 0x31, 0x41, 0x32, 0x00 };
/**
* 设置单元格大小
*/
public static final Byte[] setCodeSize = new Byte[] { 0x1D, 0x28, 0x6B, 0x03, 0x00, 0x31, 0x43, 0x09 };
/**
* 设置纠错正等级
*/
public static final Byte[] setCodeLevel = new Byte[] { 0x1D, 0x28, 0x6B, 0x03, 0x00, 0x31, 0x45, 0x30 };
/**
* 加载二维码
*/
public static Byte[] setCode = new Byte[8];
/**
* 打印二维码
*/
public static final Byte[] printCode = new Byte[] { 0x1D, 0x28, 0x6B, 0x03, 0x00, 0x31, 0x51, 0x30 };
/**
* 设置加载二维码指令
* @param code
*/
public static void doSetCode(String code) {
Common.showDeBug((byte) code.length());
setCode[0] = 0x1D;
setCode[1] = 0x28;
setCode[2] = 0x6B;
setCode[3] = (byte) (code.length()+3);
setCode[4] = 0x00;
setCode[5] = 0x31;
setCode[6] = 0x50;
setCode[7] = 0x30;
}
/**
* 合并两个byte数组
*
* @param byte_1
* @param byte_2
* @return
*/
public static byte[] byteMerger(byte[] byte_1, byte[] byte_2) {
byte[] byte_3 = new byte[byte_1.length+byte_2.length];
System.arraycopy(byte_1, 0, byte_3, 0, byte_1.length);
System.arraycopy(byte_2, 0, byte_3, byte_1.length, byte_2.length);
return byte_3;
}
/**
* int[]转byte[]
* @param arg
* @return
*/
public static byte[] intTobyte(int arg[]) {
byte[] byteTmp = new byte[arg.length];
for (int i = 0; i < arg.length; i++) {
byteTmp[i] = (byte)arg[i];
}
return byteTmp;
}
/**
* byte转Byte
*
* @param srcArray
* @param cpyArray
*/
public static void CopyArray(byte[] srcArray, Byte[] cpyArray) {
for (int index = 0; index < cpyArray.length; index++) {
cpyArray[index] = srcArray[index];
}
}
/**
* List转换为byte[]
* @param ByteArray
* @return
*/
public static byte[] convertFromListByteArrayTobyteArray(
List ByteArray) {
byte[] byteArray = new byte[ByteArray.size()];
for (int index = 0; index < byteArray.length; index++) {
byteArray[index] = ByteArray.get(index);
}
return byteArray;
}
/**
* 去重复
* @param li
* @return
*/
public static List removeDuplicateWithOrder(List li) {
List list = new ArrayList();
for(int i=0; i
/**
* 佳博蓝牙打印机,检查纸的状态:
* 当接收状态为18时,表示蓝牙打印机是正常状态;接收状态为114(无纸)或114(没关盖)时,表示不正常状态
*/
public int doCheckJiaboPaperState() {
/**1:正常,0:异常,-1:链接失败*/
int flag = 0;
try {
InputStream bis = bluetoothSocket.getInputStream();
outputStream.write(BlueThPrintInfo.stateBype);
outputStream.flush();
int tmp = bis.read();
if (tmp == 18) {
flag = 1;
} else {
flag = 0;
}
} catch (Exception e) {
flag = -1;
e.printStackTrace();
}
return flag;
}
剩下的步骤和上一篇Android网络打印机一样。这里就不一一说明了。