Getting the current user's default printer

Hi all,

How can I get the current user’s default printer to printing a task from a Servoy plugin.

You mean you want to do that in a plugin? More a question for a Java forum then…

You could try

PrintService ps = PrintServiceLookup.lookupDefaultPrintService();
String printerName = ps.getName();