1

如何在 中显示设备上安装的所有打印机Java

到目前为止找到我使用的打印机:

    PrintUtility.findPrintService(printer); //Selects any printer with the name provided
    PrintService[] services = PrintServiceLookup.lookupPrintServices(psInFormat, null);
    //System.out.println("Printers avialiable are " + services);
    System.out.println("Printer Selected " + services[Printerinx]);

但我希望在控制台中显示所有打印机。我怎样才能做到这一点?

4

1 回答 1

2

尝试

PrintServiceLookup.lookupPrintServices(null, null);

这将返回 PrintService[],其中填充了系统可用的所有打印机。

于 2013-03-07T15:12:57.980 回答