0

我需要发送 pdf 文档以在 web 应用程序的服务器端打印,打印机完全支持 pdf 打印等,它也与服务器联网。pdf 也存储在服务器上。

我想要的是单击按钮,打印出pdf文件,目前我有以下代码:

//Server side printing
public class PrintDocument {

    public void printText(String text) throws PrintException, IOException {

        //Looks for all printers
        //PrintService[] printServices = PrinterJob.lookupPrintServices();

        PrintService service = PrintServiceLookup.lookupDefaultPrintService();
        InputStream is = new ByteArrayInputStream(text.getBytes("UTF8"));
        PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
        pras.add(new Copies(1));

        DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
        Doc doc = new SimpleDoc(is, flavor, null);
        DocPrintJob job = service.createPrintJob();

        PrintJobWatcher pjw = new PrintJobWatcher(job);
        job.print(doc, pras);
        pjw.waitForDone();
        is.close();
    }
}

class PrintJobWatcher {

    boolean done = false;

    PrintJobWatcher(DocPrintJob job) {
        job.addPrintJobListener(new PrintJobAdapter() {
            public void printJobCanceled(PrintJobEvent pje) {
                allDone();
            }

            public void printJobCompleted(PrintJobEvent pje) {
                allDone();
            }

            public void printJobFailed(PrintJobEvent pje) {
                allDone();
            }

            public void printJobNoMoreEvents(PrintJobEvent pje) {
                allDone();
            }

            void allDone() {
                synchronized (PrintJobWatcher.this) {
                    done = true;
                    System.out.println("Printing has successfully completed, please collect your prints)");
                    PrintJobWatcher.this.notify();
                }
            }
        });
    }

    public synchronized void waitForDone() {
        try {
            while (!done) {
                wait();
            }
        } catch (InterruptedException e) {
        }
    }
}

但是我有几个问题/问题,如何将 pdf 放入输入流中以便打印出来,我可以选择双面打印等选项,以及如何从 JSF Web 应用程序内部调用它

谢谢

4

3 回答 3

0

看看这个博客。我们必须使用双面打印选项打印文档。在java中直接双面打印是不可能的。然而,解决方法是使用 ghostscript 并将 PDF 转换为 PS(后脚本文件)。为此,您可以添加 PJL 命令或 Post 脚本命令。

更多信息在

http://reddymails.blogspot.com/2014/07/how-to-print-documents-using-java-how.html

还阅读了类似的问题

使用 javax.print 库打印属性(托盘控制、双面打印等)

于 2015-01-24T03:42:51.847 回答
0

根据这篇文章,应该可以使用PJL块(维基百科链接包括指向 PJL 参考文档的指针)开始打印作业,然后是 PDF 数据。

感谢 PJL,您应该能够控制打印机必须提供的所有功能,包括双面打印等 - 博客文章甚至提到了装订 2 个 pdf 的组合打印输出。

一定要阅读这篇文章的评论,还有来自被列为专利发明人的人的评论,以及关于 PJL 命令的额外信息。

于 2013-02-06T23:57:21.987 回答
0

阅读完此问答后,我花了一段时间使用 javax.print 库,却发现它与打印机选项支持不太一致。即,即使打印机有装订之类的选项,javax.printer 库也会将其显示为“不支持装订”。

因此,我随后使用普通的 java 套接字尝试了 PJL 命令,它运行良好,在我的测试中,它的打印速度也比 javax.print 库快,它的代码占用空间要小得多,最好的部分是根本不需要库:

private static void print(File document, String printerIpAddress)
{
    try (Socket socket = new Socket(printerIpAddress, 9100))
    {
        DataOutputStream out = new DataOutputStream(socket.getOutputStream());
        String title = document.getName();
        byte[] bytes = Files.readAllBytes(document.toPath());

        out.write(27);
        out.write("%-12345X@PJL\n".getBytes());
        out.write(("@PJL SET JOBNAME=" + title + "\n").getBytes());
        out.write("@PJL SET DUPLEX=ON\n".getBytes());
        out.write("@PJL SET STAPLEOPTION=ONE\n".getBytes());
        out.write("@PJL ENTER LANGUAGE=PDF\n".getBytes());
        out.write(bytes);
        out.write(27);
        out.write("%-12345X".getBytes());
        out.flush();
        out.close();
    }
    catch (Exception e)
    {
        System.out.println(e);
    }
}

有关使用 javax.print 尝试的更多信息,请参阅此内容。

于 2019-04-21T06:55:37.413 回答