0

我想在 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 中显示打印对话框。

4

2 回答 2

1

您需要注意,不是客户端在此处执行您的代码。是服务器。

您必须制作一个 javascript 函数才能使其正常工作。

于 2008-12-03T15:30:19.487 回答
0

我会window.print();用javascript调用。在下面试试。

<html>
<body>

<a href="javascript:print()">Print</a>
</body>

</html>
于 2008-12-04T19:28:59.037 回答