サーマルプリンターで文字列を印刷するのに少し問題があります...
文字列の内容を適切に印刷していますが、紙を自動的にカットするのではなく、プリンターに保管し、それを出すこともありません。
- コード -
receipt = "Table #"+rs.getInt("table_id")+"\n\n"
+ "Food\t\tAdd\t\tRemove\n\n";
String defaultPrinter = PrintServiceLookup.lookupDefaultPrintService().getName();
System.out.println("Default printer: " + defaultPrinter);
PrintService service = PrintServiceLookup.lookupDefaultPrintService();
InputStream is = new ByteArrayInputStream(receipt.getBytes("UTF8"));
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
Doc doc = new SimpleDoc(is, flavor, null);
DocPrintJob job = service.createPrintJob();
PrinterJob printJob = PrinterJob.getPrinterJob();
job.print(doc, null);
is.close();
何か案は?