I want to display print dialog in servlet/jsp. Below is my code:
DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE; PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet () ; PrintService printService[] = PrintServiceLookup.lookupPrintServices(flavor, pras); PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService(); PrintService service = javax.print.ServiceUI.printDialog(null, 200, 200, printService, defaultService, flavor, pras);
if (service != null) { DocPrintJob job = service.createPrintJob(); Doc doc = new SimpleDoc(decodedImageData, flavor, null); job.print(doc, null); }
It works well in standalone application. However, I am not able to display print dialog in servlet/jsp. Can someone help me please?
Thanks a lot.