我正在尝试打印PDF文档 我可以看到打印机队列中的作业,然后我看到它消失了,就像打印机已经完成它的工作一样。
但问题是什么都没有打印。 我无法弄清楚代码中的错误。
PrintService[] printServices = PrintServiceLookup.lookupPrintServices(null,null);
PrintService service = null;
for (String imprimante : listImprimantes){
for( PrintService printService : printServices ) {
Attribute[] attrs = printService.getAttributes().toArray();
for (int j=0; j<attrs.length; j++) {
String attrName = attrs[j].getName();
String attrValue = attrs[j].toString();
if (attrName.equals("printer-info")){
if (attrValue.equals(imprimante)){
service = printService;
DocFlavor[] flavors = service.getSupportedDocFlavors();
break;
}
}
}
}
}
InputStream fi = new ByteArrayInputStream(baos.toByteArray());
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
DocPrintJob printJob = service.createPrintJob();
Doc doc = new SimpleDoc(fi, flavor, null);
try {
if (doc != null) {
printJob.print(doc, null);
}
}
catch (PrintException e1) {
log.debug(e1.getMessage());
}
如果有人可以帮我这个......
答案 0 :(得分:1)
我知道回答有点迟,但由于我遇到同样的问题,我认为它可以帮助其他人发布我的解决方案。
我在Windows(7)上遇到过这个问题,但在Linux(Fedora)上却没有,所以我的第一个动作是检查驱动程序设置。
然后,我看到许多打印机没有对PDF进行本机处理。它被接受但没有打印。由此可以选择几种解决方案:
我选择了解决方案2,它就像一个魅力。这里的好处是它还使用带有属性的PrintService,因此您可以处理页面,打印机托盘和许多选项。
以下是我的代码的一部分:
private boolean print(PrintService printService, InputStream inputStream, PrintRequestAttributeSet attributes)
throws PrintException {
try {
PDDocument pdf = PDDocument.load(inputStream);
PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintService(printService);
job.setPageable(new PDFPageable(pdf));
job.print(attributes);
pdf.close();
} catch (PrinterException e) {
logger.error("Error when printing PDF file using the printer {}", printService.getName(), e);
throw new PrintException("Printer exception", e);
} catch (IOException e) {
logger.error("Error when loading PDF from input stream", e);
throw new PrintException("Input exception", e);
}
return true;
}
希望这有帮助。