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

I've been searching a solution for changing the default printer from a java applet (and more) without success.

What I need is to print with javascript's method print(), that prints only in default printer, so, before this, change the default printer to the target printer.

Is this possible? Is there any library to do something like "setDefaultPrinter" or similar?

NOTE: I am trying to print HTML page, rendered as the user sees it in the browser.

share|improve this question
"I've tried to print with Print Service API, but doesn´t work for me because i need to print html code" Huh? 1) Which 'Print Service API' specifically? Link to the docs. 2) "print html code" a) HTML is not code, but mark-up. b) What DYM by 'print html'? Print it rendered as the user might see it in a browser - rendered nicely, or print the raw text (along with the mark-up, styles and JS) that makes the HTML document? – Andrew Thompson Jan 23 at 7:11
1  
@Andrew I mean print html page what users see – Engr. Umair Aziz Attari Jan 23 at 7:53
And the links to the 'print service' you refer to? – Andrew Thompson Jan 23 at 7:54
@AndrewThompson Jquery Print Element – Engr. Umair Aziz Attari Jan 23 at 9:32
@AndrewThompson you only interested in saying huh ??? – Engr. Umair Aziz Attari Jan 29 at 13:23

1 Answer

up vote 2 down vote accepted

Quoted from In Java how do I change or set a default printer

Try this

PrinterJob pjob = PrinterJob.getPrinterJob();
        PageFormat pf = pjob.defaultPage();
        pjob.setPrintable(null, pf);

        if (pjob.printDialog()) {
          pjob.print();
        }
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.