Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Epson JavaPOS 打印带有 Epson TM-T88V 以太网版本的收据。还使用 prt.printNormal() 打印一些愚蠢的数据,在 Windows 7 和 Windows Xp 上打印都非常慢。代替使用Windows驱动打印测试页,打印速度非常快!!
也许是JavaPOS的限制?
谢谢
最后我自己解决了这个问题。问题是由于您需要使用事务来使用打印机的全速。所以是这样的:
printer.transactionPrint(POSPrinterConst.PTR_S_RECEIPT, POSPrinterConst.PTR_TP_TRANSACTION);
和
printer.transactionPrint(POSPrinterConst.PTR_S_RECEIPT, POSPrinterConst.PTR_TP_NORMAL);
这可以永久解决问题。