Я хочу отобразить диалоговое окно печати в servlet / jsp. Ниже мой код:
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);
}
Хорошо работает в автономном приложении. Однако я не могу отобразить диалоговое окно печати в servlet / jsp.