Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm searching a possibility to get a list of installed printers. I'm using JDK 1.6 with a Windows operating system. Does anyone know a solution?

Thank you in advance.

share|improve this question

3 Answers

up vote 17 down vote accepted

Just wanted to add a little snippet:

import javax.print.*;

class Test {

    public static void main (String [] args)
    {
        PrintService[] printServices = PrintServiceLookup.lookupPrintServices(null, null);
        System.out.println("Number of print services: " + printServices.length);

        for (PrintService printer : printServices)
            System.out.println("Printer: " + printer.getName()); 
    }
}
share|improve this answer
Thank you. Exactly what I searched. – Thomas Zuberbühler Jan 4 '09 at 13:52

I haven't used this myself, but maybe javax.print.PrintServiceLookup contains what you are looking for.

share|improve this answer

Update for the newer Java packages

just modify:

import javax.print.PrintService;

import javax.print.PrintServiceLookup;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.