我的 Java ESC/POS 热敏打印机打印命令有问题。我可以打印文本,但是当我尝试执行 POS 命令时,它们不会运行。
目前,我正在尝试执行的命令是“ESC 3 n”,其中我将 n 定义为行距。
当前代码:
printHorizontalLine();
byte[] line = {ESC, (byte)'3', 5};
printBytes(line);
printHorizontalLine();
public void printBytes(byte[] bytes) {
String printer = printerName;
/* Finding the printer of name printer */
DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
PrintService[] services = PrintServiceLookup.lookupPrintServices(flavor, pras);
PrintService service = findPrintService(printer, services);
DocPrintJob job = service.createPrintJob();
// Possible umlaut characters:
try {
Doc doc = new SimpleDoc(bytes, flavor, null);
job.print(doc, null);
} catch (PrintException e) {
// Print had a problem
e.printStackTrace();
}
}
我正在尝试将两条水平线(我可以打印的两个文本)的距离减少到 5 而不是默认的 31。问题是:没有区别。
我希望线条彼此靠近