我想显示有关打印作业的信息。
可以在带有以下消息的joptionpane中: “该文件将打印到:HP1000打印机,A4纸,横向打印”。
如何从作业中获取打印机名称,纸张名称大小和方向名称信息?
答案 0 :(得分:1)
尝试使用此课程:
PrintServiceLookup
以下代码行为您返回所有已安装的打印机:
PrintService[] prtService = PrintServiceLookup.lookupPrintServices(null, null);
prtService[index].getName();//returns name of the i'the found printer.