This example show you how to get the printer or print service installed on your machine. To get the installed services we can use PrinterJob.lookupPrintServices()
method call. This method return an array of PrintService
objects. After that call PrintService.getName()
method to get the print service name.
package org.kodejava.print;
import javax.print.PrintService;
import java.awt.print.PrinterJob;
public class PrinterName {
public static void main(String[] args) {
// Lookup for the available print services.
PrintService[] printServices = PrinterJob.lookupPrintServices();
// Iterates the print services and print out its name.
for (PrintService printService : printServices) {
String name = printService.getName();
System.out.println("Name = " + name);
}
}
}
The program will print the installed print service on your machine.
Name = OneNote for Windows 10
Name = OneNote (Desktop)
Name = Microsoft XPS Document Writer
Name = Microsoft Print to PDF
Name = HP LaserJet P1005
Name = Fax
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024
PrinterJob.lookupPrintServices()
will print the server printer names (name of printers where application is deployed) not client machine printer name.