小票打印就是向打印設備發送控制打印格式的指令集,而這些打印格式需要去查詢對應打印機的API文檔,這里我把常用的api給封裝了一下
PrintFormatUtils.Java
/** * 打印格式 * Created by john on 17-3-23. */public class PrintFormatUtils { // 對齊方式 public static final int ALIGN_LEFT = 0; // 靠左 public static final int ALIGN_CENTER = 1; // 居中 public static final int ALIGN_RIGHT = 2; // 靠右 //字體大小 public static final int FONT_NORMAL = 0; // 正常 public static final int FONT_MIDDLE = 1; // 中等 public static final int FONT_BIG = 2; // 大 //加粗模式 public static final int FONT_BOLD = 0; // 字體加粗 public static final int FONT_BOLD_CANCEL = 1; // 取消加粗 /** * 打印二維碼 * @param qrCode * @return */ public static String getQrCodeCmd(String qrCode) { byte[] data; int store_len = qrCode.length() + 3; byte store_pL = (byte) (store_len % 256); byte store_pH = (byte) (store_len / 256); // QR Code: Select the model // Hex 1D 28 6B 04 00 31 41 n1(x32) n2(x00) - size of model // set n1 [49 x31, model 1] [50 x32, model 2] [51 x33, micro qr code] // https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=140 byte[] modelQR = {(byte)0x1d, (byte)0x28, (byte)0x6b, (byte)0x04, (byte)0x00, (byte)0x31, (byte)0x41, (byte)0x32, (byte)0x00}; // QR Code: Set the size of module // Hex 1D 28 6B 03 00 31 43 n // n depends on the printer // https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=141 byte[] sizeQR = {(byte)0x1d, (byte)0x28, (byte)0x6b, (byte)0x03, (byte)0x00, (byte)0x31, (byte)0x43, (byte)0x08}; // Hex 1D 28 6B 03 00 31 45 n // Set n for error correction [48 x30 -> 7%] [49 x31-> 15%] [50 x32 -> 25%] [51 x33 -> 30%] // https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=142 byte[] errorQR = {(byte)0x1d, (byte)0x28, (byte)0x6b, (byte)0x03, (byte)0x00, (byte)0x31, (byte)0x45, (byte)0x31}; // QR Code: Store the data in the symbol storage area // Hex 1D 28 6B pL pH 31 50 30 d1...dk // https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=143 // 1D 28 6B pL pH cn(49->x31) fn(80->x50) m(48->x30) d1…dk byte[] storeQR = {(byte)0x1d, (byte)0x28, (byte)0x6b, store_pL, store_pH, (byte)0x31, (byte)0x50, (byte)0x30}; // QR Code: Print the symbol data in the symbol storage area // Hex 1D 28 6B 03 00 31 51 m // https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=144 byte[] printQR = {(byte)0x1d, (byte)0x28, (byte)0x6b, (byte)0x03, (byte)0x00, (byte)0x31, (byte)0x51, (byte)0x30}; data = byteMerger(modelQR, sizeQR); data = byteMerger(data, errorQR); data = byteMerger(data, storeQR); data = byteMerger(data, qrCode.getBytes()); data = byteMerger(data, printQR); return new String(data); } /** * 打印條碼 * @param barcode * @return */ public static String getBarcodeCmd(String barcode) { // 打印 Code-128 條碼時需要使用字符集前綴 // "{A" 表示大寫字母 // "{B" 表示所有字母,數字,符號 // "{C" 表示數字,可以表示 00 - 99 的范圍 byte[] data; String btEncode; if (barcode.length() < 18) { // 字符長度小于15的時候直接輸出字符串 btEncode = "{B" + barcode; } else { // 否則做一點優化 int startPos = 0; btEncode = "{B"; for (int i = 0; i < barcode.length(); i++) { char curChar = barcode.charAt(i); if (curChar < 48 || curChar > 57 || i == (barcode.length() - 1)) { // 如果是非數字或者是最后一個字符 if (i - startPos >= 10) { if (startPos == 0) { btEncode = ""; } btEncode += "{C"; boolean isFirst = true; int numCode = 0; for (int j = startPos; j < i; j++) { if (isFirst) { // 處理第一位 numCode = (barcode.charAt(j) - 48) * 10; isFirst = false; } else { // 處理第二位 numCode += (barcode.charAt(j) - 48); btEncode += (char) numCode; isFirst = true; } } btEncode += "{B"; if (!isFirst) { startPos = i - 1; } else { startPos = i; } } for (int k = startPos; k <= i; k++) { btEncode += barcode.charAt(k); } startPos = i + 1; } } } // 設置 HRI 的位置,02 表示下方 byte[] hriPosition = {(byte) 0x1d, (byte) 0x48, (byte) 0x02}; // 最后一個參數表示寬度 取值范圍 1-6 如果條碼超長則無法打印 byte[] width = {(byte) 0x1d, (byte) 0x77, (byte) 0x02}; byte[] height = {(byte) 0x1d, (byte) 0x68, (byte) 0xfe}; // 最后兩個參數 73 : CODE 128 || 編碼的長度 byte[] barcodeType = {(byte) 0x1d, (byte) 0x6b, (byte) 73, (byte) btEncode.length()}; byte[] print = {(byte) 10, (byte) 0}; data = PrintFormatUtils.byteMerger(hriPosition, width); data = PrintFormatUtils.byteMerger(data, height); data = PrintFormatUtils.byteMerger(data, barcodeType); data = PrintFormatUtils.byteMerger(data, btEncode.getBytes()); data = PrintFormatUtils.byteMerger(data, print); return new String(data); } /** * 切紙 * @return */ public static String getCutPaperCmd() { // 走紙并切紙,最后一個參數控制走紙的長度 byte[] data = {(byte) 0x1d, (byte) 0x56, (byte) 0x42, (byte) 0x15}; return new String(data); } /** * 對齊方式 * @param alignMode * @return */ public static String getAlignCmd(int alignMode) { byte[] data = {(byte) 0x1b, (byte) 0x61, (byte) 0x0}; if (alignMode == ALIGN_LEFT) { data[2] = (byte) 0x00; } else if (alignMode == ALIGN_CENTER) { data[2] = (byte) 0x01; } else if (alignMode == ALIGN_RIGHT) { data[2] = (byte) 0x02; } return new String(data); } /** * 字體大小 * @param fontSize * @return */ public static String getFontSizeCmd(int fontSize) { byte[] data = {(byte) 0x1d, (byte) 0x21, (byte) 0x0}; if (fontSize == FONT_NORMAL) { data[2] = (byte) 0x00; } else if (fontSize == FONT_MIDDLE) { data[2] = (byte) 0x01; } else if (fontSize == FONT_BIG) { data[2] = (byte) 0x11; } return new String(data); } /** * 加粗模式 * @param fontBold * @return */ public static String getFontBoldCmd(int fontBold) { byte[] data = {(byte) 0x1b, (byte) 0x45, (byte) 0x0}; if (fontBold == FONT_BOLD) { data[2] = (byte) 0x01; } else if (fontBold == FONT_BOLD_CANCEL) { data[2] = (byte) 0x00; } return new String(data); } /** * 打開錢箱 * @return */ public static String getOpenDrawerCmd() { byte[] data = new byte[4]; data[0] = 0x10; data[1] = 0x14; data[2] = 0x00; data[3] = 0x00; return new String(data); } /** * 字符串轉字節數組 * @param str * @return */ public static byte[] stringToBytes(String str) { byte[] data = null; try { byte[] strBytes = str.getBytes("utf-8"); data = (new String(strBytes, "utf-8")).getBytes("gbk"); } catch (UnsupportedEncodingException exception) { exception.printStackTrace(); } return data; } /** * 字節數組合并 * @param bytesA * @param bytesB * @return */ public static byte[] byteMerger(byte[] bytesA, byte[] bytesB) { byte[] bytes = new byte[bytesA.length + bytesB.length]; System.arraycopy(bytesA, 0, bytes, 0, bytesA.length); System.arraycopy(bytesB, 0, bytes, bytesA.length, bytesB.length); return bytes; }}
有了打印格式,還要對具體的打印小票設置打印模板,主要就是利用上面的打印格式工具類,進行字符或字符串拼接,設置文字間空格的長度,以及使用換行符換行等。
有些小票打印的內容有可能是通用的,比如底部結束語 主站蜘蛛池模板: 国产精品揄拍一区二区久久国内亚洲精 | 国产一区二区三区免费 | 久久99精品久久久久久久青青日本 | 日韩在线中文字幕 | 精品久久久久久亚洲精品 | 亚洲高清一区二区三区 | 亚洲一区二区av | 成人黄色在线视频 | 欧美日韩国产高清视频 | 成人宗合网 | 羞羞视频免费观看 | 天天综合久久 | 久久久久久久 | 色橹橹欧美在线观看视频高清 | 欧美日韩国产精品一区二区 | 久久久久久久久99精品 | 日本一区二区三区精品视频 | 2020亚洲视频 | 亚洲成人精品av | 国产片三级91 | 日韩高清一级 | 色综合一区二区三区 | 日韩精品一区二区三区第95 | 日韩免费视频一区二区 | 中文字幕第66页 | 亚洲欧美一级 | 欧美全黄 | 亚洲视频免费在线 | 国产中文字幕一区二区三区 | 国精产品一区一区三区在线观看 | www91在线观看 | 国产主播一区 | 日韩手机在线视频 | 另类国产ts人妖高潮系列视频 | 色先锋资源 | 精品国产乱码久久久久久闺蜜 | 国产成人精品久久 | 亚洲视频免费网站 | 精品超碰 | 成人免费在线电影 | 久久国内精品 |