デバイスにインストールされているすべてのプリンタを で表示するにはどうすればよい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]);
しかし、すべてのプリンターをコンソールに表示したいと思います。どうすればこれを達成できますか?