gpt4 book ai didi

java - 如何使用 PAX a920 打印收据?

转载 作者:行者123 更新时间:2023-12-04 23:49:59 28 4
gpt4 key购买 nike

我有运行 android 的 Pax A920。
那么如何在java中使用打印服务呢?

最佳答案

我建议你使用 Neptune api。你可以google pax 920 neptune api demo,显示的第一个链接(https://docs.hips.com/docs/pax-a920)包含一个演示,它显示了所有基本功能(包括打印机),你可以在你的设备上运行它:
在应用程序中,您首先需要一个函数来检索 IDAL:

public static IDAL getDal() {
if(dal == null){ //dal is a private static IDAL variable of the application
try {
dal = NeptuneLiteUser.getInstance().getDal(context);
} catch (Exception e) {}
}
return dal;
}
然后在您的 Activity 中,您可以执行以下操作:
try {
IPrinter printer= MyApp.getDal().getPrinter();
printer.init();
printer.printStr("Your text",null);
printer.start();
} catch (PrinterDevException e) {
e.printStackTrace();
}

关于java - 如何使用 PAX a920 打印收据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63759114/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com