我需要发送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应用程序中调用它
由于
答案 0 :(得分:0)
根据this article,应该可以使用PJL块启动打印作业(Wikipedia链接包含指向PJL参考文档的指针),然后是PDF数据。
感谢PJL,您应该能够控制打印机提供的所有功能,包括双面打印等 - 博客文章甚至提到了2 pdf组合打印输出的装订。
请务必阅读该文章的评论,该专利的发明人以及有关PJL命令的额外信息也有评论。
答案 1 :(得分:0)
看看这个博客。我们不得不打印带双面打印选项的文档。 它不可能直接在java中双面打印。然而,解决方法是使用ghostscript并将PDF转换为PS(Post script file)。为此,您可以添加PJL命令或Post脚本命令。
的更多信息
http://reddymails.blogspot.com/2014/07/how-to-print-documents-using-java-how.html
同时阅读类似的问题
Printing with Attributes(Tray Control, Duplex, etc...) using javax.print library
答案 2 :(得分: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);
}
}